User Account Balance

Retrieves the balance of one or more user accounts by currency or account name.

Endpoint: GET /account/balance

Query Parameters:

Parameter
Type
Required
Default
Description

currency

String

No

-

Currency code (EUR, USD, etc.)

account

String

No

-

Specific account name

Note: If both parameters are provided, account takes precedence over currency.

Response:

[
  {
    "total": 1234.56,
    "currency": "USD"
  },
  {
    "total": 5678.90,
    "currency": "EUR"
  }
]

Response for Single Account Query:

[
  {
    "total": 1234.56,
    "currency": "USD"
  }
]

Response Parameters:

The endpoint returns an array of account balance objects:

Field
Type
Description

total

Decimal

Total balance in the account

currency

String

Currency code of the account

Last updated