Skip to main content
GET
/
api
/
balances
List Wallet Balances
curl --request GET \
  --url http://127.0.0.1:8083/api/balances \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
[
  {
    "status": "active",
    "total_amount": 5000,
    "available_amount": 4800,
    "currency": "USDT",
    "network": "ETH",
    "currency_type": "crypto"
  }
]

Authorizations

X-API-Key
string
header
required

Includes an API key in the HTTP headers to authenticate the client.

X-API-Secret
string
header
required

Includes an API secret in the HTTP headers to authenticate the client.

Response

Operation Successful

status
enum<string>

Account status

Available options:
active,
inactive
Example:

"active"

total_amount
number

Total balance amount

Example:

5000

available_amount
number

Available balance amount

Example:

4800

currency
enum<string>

Currency code

Available options:
USDT,
USDC,
USD
Example:

"USDT"

network
enum<string>

Blockchain network

Available options:
ETH,
TRX
Example:

"ETH"

currency_type
enum<string>

Currency type

Available options:
fiat,
crypto
Example:

"crypto"