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
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
- ○
endpoint added
endpoint-added
- ○