Skip to main content
GET
/
.well-known
/
oauth-authorization-server
OAuth 2.0 Authorization Server Metadata (RFC 8414)
curl --request GET \
  --url https://api.izap.ai/.well-known/oauth-authorization-server
{
  "issuer": "https://api.izap.ai",
  "authorization_endpoint": "https://api.izap.ai/oauth/authorize",
  "token_endpoint": "https://api.izap.ai/oauth/token",
  "registration_endpoint": "https://api.izap.ai/oauth/register",
  "grant_types_supported": [
    "authorization_code",
    "refresh_token"
  ],
  "code_challenge_methods_supported": [
    "S256"
  ],
  "token_endpoint_auth_methods_supported": [
    "none",
    "client_secret_post",
    "client_secret_basic"
  ]
}

Response

Authorization server metadata.

The response is of type object.