Retrieve an account balance

Returns the balance for a specific account.

Use this endpoint to check available funds before initiating payments. Payments are processed on a prefunded basis, so accounts must contain a sufficient balance before you can use them to make payments.

Endpoint

GET /accounts/{accountId}/balance

where accountId is the unique identifier of the account you want to retrieve the balance for.

For example:

GET /accounts/4111/balance

Response

{
  "accountId": 4111,
  "currency": "GBP",
  "balance": 853189.00,
  "totalCredits": 1000000.00,
  "totalDebits": 146811.00,
  "updatedAt": "2026-04-14T00:00:00Z"
}