v66

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-042174421.1 MB
Financial Account

List Account Activity

Retrieve a list of transactions across all public accounts.

get/v1/account_activity

Query parameters

status'DECLINED' | 'EXPIRED' | 'PENDING' | 'RETURNED' | 'REVERSED' | 'SETTLED' | 'VOIDED'

Filter by transaction status

result'APPROVED' | 'DECLINED'

Filter by transaction result

financial_account_tokenstring uuid

Filter by financial account token

business_account_tokenstring uuid

Filter by business account token

account_tokenstring uuid

Filter by account token

category'ACH' | 'WIRE' | 'STABLECOIN' | 'BALANCE_OR_FUNDING' | 'FEE' | 'REWARD' | 'ADJUSTMENT' | 'DERECOGNITION' | 'DISPUTE' | 'CARD' | 'EXTERNAL_ACH' | 'EXTERNAL_CHECK' | 'EXTERNAL_FEDNOW' | 'EXTERNAL_RTP' | 'EXTERNAL_TRANSFER' | 'EXTERNAL_WIRE' | 'MANAGEMENT_ADJUSTMENT' | 'MANAGEMENT_DISPUTE' | 'MANAGEMENT_FEE' | 'MANAGEMENT_REWARD' | 'MANAGEMENT_DISBURSEMENT' | 'HOLD' | 'PROGRAM_FUNDING' | 'PROGRAM_TRANSFER'

Note: Inbound wire transfers are coming soon (availability varies by partner bank). The WIRE category is a preview. To learn more, contact your customer success manager.

Filter by transaction category

beginstring date-time

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

ending_beforestring

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

endstring date-time

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

page_sizeinteger

Page size (for pagination).

starting_afterstring

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Response

Successful response with unified transaction data

has_moreboolean required

Indicates if there are more transactions available for pagination

Example response

{
  "data": [
    {
      "currency": "USD",
      "settled_amount": 200,
      "pending_amount": 500,
      "financial_account_token": "0cc87075-57cf-4607-8722-f42e2cb2c0cd"
    }
  ]
}