Skip to content

Get token balance info

Request

Retrieves the total token balance, reserved tokens, and free tokens for the user associated with the provided Bearer token.

Security
BearerAuth
Headers
Authorizationstring

Authorization header with a Bearer token, formatted as 'Bearer [JWT]' where [JWT] is the JSON Web Token used for user authentication and authorization.

Example:Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.your-payload-here.signature
GET
/users/check_tokens
curl -i -X GET \
  https://api.open-atlas.com/_mock/openapi/users/check_tokens \
  -H 'Authorization: Bearer <YOUR_JWT or vantage_live_ API key_HERE>'

Responses

Token balance details retrieved successfully

Bodyapplication/json
string
Response
{ "token_balance": 100, "reserved_tokens": 22, "free_tokens": 78 }