Skip to main content
GET
/
.well-known
/
oauth-authorization-server
/.well-known/oauth-authorization-server
curl --request GET \
  --url https://api.archera.ai/.well-known/oauth-authorization-server \
  --header 'x-api-key: <api-key>'
{
  "issuer": "<string>",
  "authorization_endpoint": "<string>",
  "token_endpoint": "<string>",
  "jwks_uri": "<string>",
  "response_types_supported": [
    "<string>"
  ],
  "grant_types_supported": [
    "<string>"
  ],
  "code_challenge_methods_supported": [
    "<string>"
  ],
  "token_endpoint_auth_methods_supported": [
    "<string>"
  ],
  "scopes_supported": [
    "<string>"
  ],
  "service_documentation": "<string>"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get your key from User Settings > API Access in the Archera platform.

Response

OK

issuer
string
required

The authorization server's issuer identifier URL

authorization_endpoint
string
required

URL of the OAuth 2.0 authorization endpoint

token_endpoint
string
required

URL of the OAuth 2.0 token endpoint

jwks_uri
string
required

URL of the JSON Web Key Set document

response_types_supported
string[]
required

OAuth 2.0 response_type values supported

grant_types_supported
string[]
required

OAuth 2.0 grant type values supported

code_challenge_methods_supported
string[]
required

PKCE code challenge methods supported

token_endpoint_auth_methods_supported
string[]
required

Client authentication methods supported at token endpoint

scopes_supported
string[]
required

OAuth 2.0 scope values supported

service_documentation
string

URL of service documentation for developers