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
Example response
{
"active": true,
"sub": "your_userId",
"client_id": "your_client_id",
"exp": 1780000000,
"iat": 1779996400,
"token_type": "Bearer"
}