Skip to main content
GET
/
.well-known
/
oauth-authorization-server
Well Known Oauth
curl --request GET \
  --url https://api.agentpowers.ai/.well-known/oauth-authorization-server
{
  "issuer": "<string>",
  "authorization_endpoint": "<string>",
  "token_endpoint": "<string>",
  "registration_endpoint": "<string>",
  "response_types_supported": [
    "<string>"
  ],
  "grant_types_supported": [
    "<string>"
  ],
  "token_endpoint_auth_methods_supported": [
    "<string>"
  ],
  "code_challenge_methods_supported": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.agentpowers.ai/llms.txt

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

Response

200 - application/json

Successful Response

issuer
string
required
authorization_endpoint
string
required
token_endpoint
string
required
registration_endpoint
string
required
response_types_supported
string[]
required
grant_types_supported
string[]
required
token_endpoint_auth_methods_supported
string[]
required
code_challenge_methods_supported
string[]
required