Skip to main content
GET
/
v1
/
balances
/
{currency}
Get balance by currency
curl --request GET \
  --url https://api.antonpayments.com/v1/balances/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "merchant_id": "<string>",
    "currency": "<string>",
    "available": "15000.50",
    "pending": "2500.00",
    "total": "17500.50",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Path Parameters

currency
string
required

Currency code (e.g., USD, EUR, USDT).

Response

Balance for the specified currency.

data
object
required