List Deposits
Deposits
List Deposits
List incoming payments for an account, newest first, with filters
GET
List Deposits
Deposits are incoming credits to an account — funds received into one of the account’s virtual accounts (for example via a virtual-account deposit), plus other incoming account credits. Deposit endpoints are nested under the owning account (
/accounts/{account_id}/deposits), consistent with the other money-domain resources. Deposits are addressed by an id with the api_ prefix.
Returns a paginated list of incoming payments for the authenticated account, newest first. Results can be filtered by virtual account, status, currency, bank reference, and date range.
Path Parameters
string
required
Id of the owning account (e.g.
acct_...).Query Parameters
integer
Page number. Defaults to 1; must be ≥ 1.
integer
Items per page. Defaults to 10; allowed range 1–100.
string
Filter by virtual account id (
va_…).string
Filter by deposit id (
api_…).DepositStatus
Filter by status:
pending, completed, failed, or reversed.Currency
Filter by deposit currency (e.g.
USD, EUR).datetime
Created on or after this date (inclusive).
datetime
Created before this date (exclusive).
string
Exact match on the bank reference.
Response
Returns200 with a paginated list of deposit objects.
object[]
required
Deposits in the current page. See the deposit object attributes under Get Deposit.
integer
required
Current page number.
integer
required
Items per page.
integer
required
Total items across all pages.
integer
required
Total number of pages.