Oauth
Token Introspection
Validate an Access Token and retrieve its metadata.
POST
Validates an Access Token and returns its metadata. Returns
"active": false for expired or invalid tokens.
Header parameters
Must be
application/x-www-form-urlencoded.Client credentials encoded in Base64:
Basic base64({CLIENT_ID}:{CLIENT_SECRET}).Body parameters
The Access Token to validate.
Token type hint. Fixed value
access_token.Response
Whether the token is valid and active. Returns
false for expired or invalid tokens.Client ID the token was issued for.
Token expiration time (Unix timestamp).
Token issuance time (Unix timestamp).
Token issuer.
Unique token identifier.
Granted permission scopes.
Wallet address of the token subject.
Token type. Always
Bearer.
