Skip to main content
GET
/
v0
/
auth
/
providers
List enabled auth providers
curl --request GET \
  --url https://api.avidoai.com/v0/auth/providers
{
  "providers": [
    "google",
    "microsoft"
  ],
  "emailProviderConfigured": true
}

Response

Successfully retrieved enabled auth providers

Response body for the auth-providers endpoint. The value changes only on deploy.

providers
enum<string>[]
required

SSO providers enabled on the API server, based on server-side env vars.

Identifier of a supported SSO social provider

Available options:
google,
microsoft
Example:
["google", "microsoft"]
emailProviderConfigured
boolean
required

Whether an email provider (Loops) is configured on the API server via LOOPS_API_KEY. When false, email-dependent auth flows such as magic-link sign-in should be hidden in the UI.

Example:

true