v1

latestOpenAPI 3.0.02026-08-04891301.4 MB
auth

List supported auth methods

Returns the complete catalogue of authentication methods the platform supports, including each method's stable slug, user-facing name, and description.

Use this endpoint to render method labels in sign-in UIs or org settings screens without hardcoding copy or maintaining your own enum list. Results reflect the platform's source-of-truth catalogue and are consistent across all orgs.

This endpoint requires only a publishable key and is accessible without an active user session, making it suitable for pre-authentication flows such as login page rendering or onboarding configuration.

get/api/v1/auth/allowed_auth_methods

Response

Successful response

Example response

{
  "data": [
    {
      "description": "An example description.",
      "name": "Example Name",
      "slug": "example-slug"
    }
  ]
}