Skip to main content
POST
Validates an Access Token and returns its metadata. Returns "active": false for expired or invalid tokens.

Header parameters

Content-Type
string
required
Must be application/x-www-form-urlencoded.
Authorization
string
required
Client credentials encoded in Base64: Basic base64({CLIENT_ID}:{CLIENT_SECRET}).

Body parameters

token
string
required
The Access Token to validate.
token_type_hint
string
Token type hint. Fixed value access_token.

Response

active
boolean
Whether the token is valid and active. Returns false for expired or invalid tokens.
client_id
string
Client ID the token was issued for.
exp
integer
Token expiration time (Unix timestamp).
iat
integer
Token issuance time (Unix timestamp).
iss
string
Token issuer.
jti
string
Unique token identifier.
scope
string
Granted permission scopes.
sub
string
Wallet address of the token subject.
token_type
string
Token type. Always Bearer.