Skip to main content
POST https://{baseUrl}/api/sp2401

Request Parameters

currency
string
ISO 4217 3-letter currency code (e.g. USD). Omit this field to retrieve balances for all currencies.

Response Body

The response returns a list of CurrencyBalance objects.
CurrencyBalance[]
object[]
required
List of account balances, one entry per currency.
{
  "currency": "USD"
}
[
  {
    "currency": "USD",
    "balance": "2000.00",
    "status": "on"
  },
  {
    "currency": "CNY",
    "balance": "8231.22",
    "status": "off"
  }
]