Retrieves all currencies available in the app, with the authenticated player’s balance for each currency included.
Authentication requires both an API key (for app identification) and a valid JWT token (for player identification).
Each currency object includes a nested balance object containing the player’s current balance amount for that currency. If the player has no balance for a currency, the balance field will be null.
API key authentication for accessing platform resources.
To authenticate, include your app's API key in the 'apikey' header.
Each API key is associated with a specific app and organization. The API key determines which organization and app context your requests operate within.
Example: apikey: tgc_public_1234567890abcdef
JWT token authentication for player-specific operations.
Obtain a JWT token by calling /players/login or /players/register. Include the token in the Authorization header.
Example: Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Successfully retrieved app currencies with player balances