Skip to main content
GET
/
.well-known
/
oauth-authorization-server
OAuth 2.0 Authorization Server Metadata (RFC 8414)
curl --request GET \
  --url https://archyon.app/.well-known/oauth-authorization-server
{
  "issuer": "<string>",
  "authorization_endpoint": "<string>",
  "token_endpoint": "<string>",
  "response_types_supported": [
    "<string>"
  ],
  "grant_types_supported": [
    "<string>"
  ],
  "code_challenge_methods_supported": [
    "<string>"
  ],
  "registration_endpoint": "<string>",
  "revocation_endpoint": "<string>",
  "token_endpoint_auth_methods_supported": [
    "<string>"
  ],
  "scopes_supported": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.archyon.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Metadata document.

issuer
string<uri>
required
authorization_endpoint
string<uri>
required
token_endpoint
string<uri>
required
response_types_supported
string[]
required
grant_types_supported
string[]
required
code_challenge_methods_supported
string[]
required
registration_endpoint
string<uri>
revocation_endpoint
string<uri>
token_endpoint_auth_methods_supported
string[]
scopes_supported
string[]