Accounts

Get monthly non-balance account statement

Returns a combined monthly statement for a customer's virtual accounts and virtual addresses. Each completed transfer appears as an in-leg and an out-leg. Balance accounts are excluded — use GET /v1/accounts/{id}/statement for those.

get/v1/accounts/customer/{customerId}/statement

Path parameters

customerIdstring required

Customer ID

Query parameters

monthstring required
Example:2026-08

Calendar month in UTC

Headers

X-API-Keystring

API key

Response

Monthly non-balance account statement

accountIdstring required

Account ID, or customer ID for the combined non-balance statement

accountNamestring required

Account holder or customer name

monthstring required

Statement month

currencystring nullable

Balance currency. Null on pass-through statements, which may mix currencies.

openingBalancestring required

Balance at the beginning of the month, in minor units

closingBalancestring required

Balance at the end of the month, in minor units

Example response

{
  "accountId": "vba_abc123",
  "accountName": "Acme Inc.",
  "month": "2026-08",
  "currency": "USD",
  "openingBalance": "1000000",
  "closingBalance": "900000",
  "data": [
    {
      "transactionId": "tfr_abc123",
      "timestamp": "2026-08-15T10:30:00Z",
      "status": "COMPLETED",
      "type": "PAYIN",
      "currency": "USD",
      "amount": "-100000",
      "balance": "900000"
    }
  ]
}

Changes

Changed in 1 of the 19 revisions of this API.1