Skip to main content
GET
/
v1
/
balances
List all balances
curl --request GET \
  --url https://api.antonpayments.com/v1/balances \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "bal_01HX8Z9K0M2N3P4Q5R6S7T8UBA1",
      "merchant_id": "mer_01HX8Z9K0M2N3P4Q5R6S7T8UZZ",
      "currency": "USD",
      "available": "12450.00",
      "pending": "550.00",
      "total": "13000.00",
      "updated_at": "2026-04-15T14:30:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API keys are opaque strings prefixed by environment:

  • ak_live_* — production keys, accepted only on api.antonpayments.com.
  • ak_test_* — sandbox keys, accepted only on api.antonpayments.dev.

Include your key in the Authorization header: Bearer ak_test_....

Response

Balances across all currencies.

data
object[]
required