Skip to content
/.well-known/oauth-authorization-server

Authorization-server metadata (RFC 8414)

FinRadar AS metadata: `issuer`, `authorization_endpoint` (/oauth/authorize), `token_endpoint` (/oauth/token), `jwks_uri`, `code_challenge_methods_supported: ['S256']` (PKCE S256 required), `scopes_supported: ['mcp']`, `grant_types_supported: ['authorization_code','refresh_token']`.

free

Response schema

FieldTypeNullableDescription
issuerstringnoThe authorization server's issuer identifier (no trailing slash). Every other endpoint URL below is this issuer plus a path, and issued tokens carry it as `iss`.
authorization_endpointstringnoURL of the authorize endpoint (`<issuer>/oauth/authorize`) where the user logs in and consents.
token_endpointstringnoURL of the token endpoint (`<issuer>/oauth/token`) that exchanges a code for a token and rotates refresh tokens.
jwks_uristringnoURL of the JSON Web Key Set (`<issuer>/.well-known/jwks.json`) — the public keys a resource server uses to verify access-token signatures.
registration_endpointstringnoURL of the Dynamic Client Registration endpoint (`<issuer>/oauth/register`, RFC 7591) where a client obtains a `client_id`.
revocation_endpointstringnoURL of the token revocation endpoint (`<issuer>/oauth/revoke`, RFC 7009) used to disconnect.
scopes_supportedarraynoThe scope values the AS can grant: the `mcp` and `cli` superscopes plus the per-family `:read` grants and the reserved `account:write` / `payment:write`. Strings.
response_types_supportedarraynoOAuth response types supported. Always `['code']` — authorization-code flow only (OAuth 2.1; no implicit flow).
grant_types_supportedarraynoGrant types supported: `['authorization_code','refresh_token']`.
code_challenge_methods_supportedarraynoPKCE code-challenge methods. Always `['S256']` — `plain` is not accepted.
token_endpoint_auth_methods_supportedarraynoClient authentication methods at the token endpoint. Always `['none']` — public clients that authenticate with PKCE, no client secret.
service_documentationstringnoURL of human/agent-readable service documentation (`<issuer>/llms.txt`).
op_tos_uristringyesURL of the operator's Terms of Service. Present only when configured server-side; omitted otherwise (never advertised as a dead link).
op_policy_uristringyesURL of the operator's usage policy. Present only when configured server-side; omitted otherwise.

Errors

StatusLabelDescription
200OKRequest succeeded.
400Bad RequestInvalid query, body, or path parameter.
401UnauthorizedMissing or invalid Authorization header / api_Token.
402Payment RequiredInsufficient token balance for this call. Top up
429Too Many RequestsRate limit exceeded for your tier (see /pricing for tier limits). Tier limits
500Server ErrorUnexpected server-side failure. Retry with backoff; report if persistent.

Code samples

curl "https://api.finradar.ai/.well-known/oauth-authorization-server" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"

Generate an API key in /account/credentials to run live queries (literal YOUR_API_KEY placeholder shown until then).