API v1 ReferenceSignup
Get signup configuration
Retrieves available OAuth providers and CAPTCHA challenge URL needed for the signup form. This endpoint provides the configuration data required to render the signup interface with available authentication methods.
Response Body
application/json
application/json
curl -X GET "https://app.orbiqhq.com/api/v1/signup"{
"providers": [
{
"name": "default",
"label": "Email & Password",
"icon": "mail"
},
{
"name": "github",
"label": "GitHub",
"icon": "github"
},
{
"name": "google",
"label": "Google",
"icon": "google"
}
],
"altchaChallengeUrl": "https://altcha.orbiqhq.com/v1/challenge?apiKey=xxx"
}{
"providers": [
{
"name": "default",
"label": "Email & Password",
"icon": "mail"
}
],
"altchaChallengeUrl": "https://altcha.orbiqhq.com/v1/challenge?apiKey=xxx"
}How is this guide?