v2

latestOpenAPI 3.0.3Proprietary2026-07-263483431.1 MB
OAuth

Get OAuth authorization server metadata

Public OAuth metadata endpoint. Advertises only /v3 OAuth endpoints, dynamic client registration, Client ID Metadata Documents, PKCE, and supported global machine scopes.

get/v3/oauth/.well-known/oauth-authorization-server

Response

OAuth authorization server metadata

issuerstring uri required
authorization_endpointstring uri required
token_endpointstring uri required
registration_endpointstring uri required
introspection_endpointstring uri
revocation_endpointstring uri
response_types_supportedstring[] required
grant_types_supportedstring[] required
token_endpoint_auth_methods_supportedstring[] required
code_challenge_methods_supportedstring[] required
client_id_metadata_document_supportedboolean required
scopes_supportedstring[] required

Example response

{
  "issuer": "https://api.scalev.com/v3/oauth",
  "authorization_endpoint": "https://app.scalev.com/oauth/authorize",
  "token_endpoint": "https://api.scalev.com/v3/oauth/token",
  "registration_endpoint": "https://api.scalev.com/v3/oauth/register",
  "introspection_endpoint": "https://api.scalev.com/v3/oauth/introspect",
  "revocation_endpoint": "https://api.scalev.com/v3/oauth/revoke",
  "response_types_supported": [
    "code"
  ],
  "grant_types_supported": [
    "authorization_code",
    "refresh_token"
  ],
  "code_challenge_methods_supported": [
    "S256"
  ],
  "client_id_metadata_document_supported": true
}