Skip to main content

List bank transactions

GET 

/v1/baas/transactions

Returns bank transactions (deposits/withdrawals) for a wallet with bank-specific fields.

Request

Query Parameters

    walletId stringrequired

    The ID of the wallet to retrieve transactions for

    type string

    Filter by bank transaction type (e.g., DEPOSIT_INITIATED, DEPOSIT_SUCCESS, WITHDRAWAL_SUCCESS)

    status string

    Filter by transaction status (PENDING, COMPLETED, FAILED, CANCELLED, PROCESSED)

    bankNetwork string

    Filter by bank network (ACH, WIRE, SEPA, etc.)

    createdAfter string

    Filter transactions created after this date (YYYY-MM-DD)

    createdBefore string

    Filter transactions created before this date (YYYY-MM-DD)

    limit number
    offset number

Responses

Successfully retrieved bank transactions.

Schema

    traceId string
    message string

    data

    object[]

  • Array [

  • id stringrequired

    Unique identifier for the bank transaction

    parentBankTransactionId string

    Parent bank transaction ID (for grouping related transactions)

    walletId stringrequired

    Wallet ID this transaction belongs to

    type stringrequired

    Type of bank transaction

    operation stringrequired

    Operation type (CREDIT or DEBIT)

    amount stringrequired

    Transaction amount

    asset stringrequired

    Asset type (e.g., USD)

    status stringrequired

    Transaction status

    bankNetwork string

    Bank network used for the transaction

    endToEndId string

    End-to-end identifier for tracking

    address string

    Address associated with the transaction

    memo string

    User-provided memo

    note string

    User-provided note

    createdAt stringrequired

    Timestamp when the transaction was created

  • ]

  • pagination

    object

    totalResults numberrequired
    hasMoreResults booleanrequired
Loading...