v2
latestOpenAPI 3.0.3Proprietary2026-07-263483431.1 MBOAuth
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
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
}