๐Ÿช™Get Balance

The "Get Balance" function is designed to allow clients to retrieve the current balance data for a specified user. Clients must send an HTTP POST request to our API endpoint to access this information.

circle-info

Endpoint: /api/v1/transfer/get-balance Request Type: POST Content-Type: application/json

HTTP Authorization

Key
Description

X-Authorization-Token

Token generate by AES-256 (Example: Here)

Request Example

{
  "playerUsername": "<player_username>",
  "currencyCode": "<currency_code>"
}

Response example

{
  "code": 0,
  "msg": "Successful",
  "requestUUid": "<UUID v4>",
  "requestTime": "YYYY-MM-DD HH:mm:ss",
  "data": {
    ...
  }
}