Skip to main content
Check that a token is valid and find out which account it belongs to. The call takes no parameters — the account is read from the token itself. Use it as a cheap preflight: call it once at startup to confirm a token still works before sending real traffic, rather than discovering a revoked token on your first billable call. This call is free and never billed. See Credits and billing.

Authorization

string
required
Your bearer token: Bearer <token>. See Authentication.

Request body

The request body is an empty object.
Request

Response

string
The id of the account the token belongs to.
200 OK

Errors

A 200 means the token is good. See Errors for the envelope shape.

Example

Next