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

Header parameters

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

Body parameters

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

Response

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