Account balance API

Below is a set of APIs that allow one to check account balances.

Retrieve balance for a all accounts

get

Returns all accounts belonging to the authenticated merchant This endpoint provides a list of accounts with their respective balances, currencies, payment method, and other public-facing information Each account includes fields such as:

  • accountId: Unique account identifier

  • accountLabel: Optional human-readable label

  • accountNumber: Account number string

  • accountCurrency / referenceCurrency: Currency codes

  • balance / balanceReferenceCurrency: Current balance in both account and reference currencies

  • withdrawalBalance / withdrawalBalanceReferenceCurrency: Balance available for withdrawal

  • paymentMethod: Name of the attached payment method, if any

  • isActive: Indicates whether the account is active.

Authorizations
x-api-keystringRequired
Responses
200

Ok

application/json
get
/balance/accounts

Retrieve balance for a specific account

get

Returns account belonging to the authenticated merchant by id This endpoint provides account with respective balances, currencies, payment method, and other public-facing information Account includes fields such as:

  • accountId: Unique account identifier

  • accountLabel: Optional human-readable label

  • accountNumber: Account number string

  • accountCurrency / referenceCurrency: Currency codes

  • balance / balanceReferenceCurrency: Current balance in both account and reference currencies

  • withdrawalBalance / withdrawalBalanceReferenceCurrency: Balance available for withdrawal

  • paymentMethod: Name of the attached payment method, if any

  • isActive: Indicates whether the account is active.

Authorizations
x-api-keystringRequired
Path parameters
accountIdstringRequired
  • Id of account.
Responses
200

Ok

application/json
get
/balance/accounts/{accountId}

Last updated