Get Account Balance Developing
Run in Apifox
This endpoint retrieves the current balance(s) for the authenticated merchant account. You may query a specific currency or fetch all available balances at once.
Request Code Samples
curl --location 'https://api.geoaccount.com/api/v1/accounts//balances?currency=CNY' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.xxxxx' \
--header 'GS-API-Key: gs_live_abc123def456789' Responses application/json
Generate Code
{
"accountId" : "acc_123" ,
"asOf" : "2026-03-27T11:40:00Z" ,
"balances" : [
{
"asset" : {
"code" : "USD" ,
"type" : "fiat"
} ,
"balance" : {
"total" : 1000.00 ,
"available" : 900.00 ,
"locked" : 100.00 ,
"pending" : 0.00
}
} ,
{
"asset" : {
"code" : "USDT" ,
"type" : "crypto" ,
"network" : "TRON"
} ,
"balance" : {
"total" : 500.00 ,
"available" : 500.00 ,
"locked" : 0.00 ,
"pending" : 0.00
}
}
]
} Modified at 2026-03-27 07:51:22