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>'
[
  {
    "network": "ETH,TRX",
    "id": "<string>",
    "status": "active,inactive",
    "total_amount": 123,
    "available_amount": 123,
    "currency": "USDT,USDC,USD",
    "currency_type": "fiat,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

network
string
required

Blockchain Network

Example:

"ETH,TRX"

id
string

Balance ID

status
string

Status

Example:

"active,inactive"

total_amount
number

Total Amount

available_amount
number

Available Amount

currency
string

Currency

Example:

"USDT,USDC,USD"

currency_type
string

Currency Type

Example:

"fiat,crypto"