GET
/
.well-known
/
oauth-authorization-server
OAuth 2.0 Authorization Server Metadata
curl --request GET \
  --url https://api.nomos.energy/.well-known/oauth-authorization-server
{
  "issuer": "https://api.nomos.energy",
  "authorization_endpoint": "https://api.nomos.energy/oauth/authorize",
  "token_endpoint": "https://api.nomos.energy/oauth/token",
  "response_types_supported": [
    "code"
  ],
  "grant_types_supported": [
    "authorization_code",
    "client_credentials",
    "refresh_token"
  ],
  "code_challenge_methods_supported": [
    "S256",
    "plain"
  ],
  "token_endpoint_auth_methods_supported": [
    "client_secret_basic",
    "client_secret_post"
  ],
  "scopes_supported": [
    "read",
    "write"
  ]
}

Response

200 - application/json

OAuth 2.0 Authorization Server Metadata

The response is of type object.