latestOpenAPI 3.0.12026-07-26222700728.0 KB

e9f0790a89af

OAuth

Introspect access token

Inspect an access token to determine its validity and metadata.

Returns token claims including active status, subject, expiration, and scopes. Authenticate using HTTP Basic auth (client_secret_basic)

post/v6/auth/introspect

Response

Token introspection result

activeboolean required

Whether the token is currently active and valid.

substring

Subject identifier — the user or client the token was issued to.

client_idstring

The client ID associated with the token.

expinteger

Unix timestamp indicating when the token expires.

iatinteger

Unix timestamp indicating when the token was issued.

scopestring

Space-separated list of scopes granted to the token.

token_typestring

Example response

{
  "active": true,
  "sub": "your_userId",
  "client_id": "your_client_id",
  "exp": 1780000000,
  "iat": 1779996400,
  "token_type": "Bearer"
}