v3

latestOpenAPI 3.0.3UNLICENSED2026-07-2796235396.3 KB
ledger-account activity

Get account transaction activities

This operation allows the client to fetch a paginated, aggregated feed of all transaction activity for an account (cash deposits/payments, account-number deposits, crypto deposits/withdrawals, internal transfers, offramp deposits), each with type-specific details in activityData.

get/ledger/accounts/{accountId}/activities

Path parameters

accountIdstring uuid required

the unique onboard account ID

Query parameters

typeTransactionActivityType[]

Filter by activity type

direction'CREDIT' | 'DEBIT'

Filter by activity direction

startDatestring date-time

Filter activities occurring on or after this date-time

endDatestring date-time

Filter activities occurring on or before this date-time

pageinteger

Page parameter, starting from 1

sizeinteger

Response

Activities fetched successfully

namestring

Descriptive name for the list

sizeinteger

Positive integer

totalItemsinteger

Positive integer

nextPageinteger

Positive integer

previousPageinteger

Positive integer

Example response

{
  "content": [
    {
      "amount": 100,
      "currency": "USD"
    }
  ]
}