Skip to main content

Search card transactions

GET 

/cards/:cardId/transactions

List card transactions.

Use this endpoint to retrieve transactions related to a specified card. Listed transactions can be filtered by a range of parameters including date, status and transaction type.

This endpoint:

  • Supports multiple search criteria
  • Provides paginated results
  • Allows filtering by date range
  • Supports filtering by transaction status and type

Request

Path Parameters

    cardId stringrequired

    The ID of the card

Query Parameters

    details string

    Filter transactions by details or description

    destination string

    Filter transactions by destination name or description

    endToEndId string

    Filter transactions by end-to-end ID

    referenceNumber string

    Filter transactions by reference number

    direction string

    Filter transactions by direction (DEBT or CRED)

    type string

    Filter transactions by type

    status string

    Filter transactions by status (SUCCEEDED, FAILED, etc.)

    endDate string

    End date of the range (yyyy-MM-dd)

    startDate string

    Start date of the range (yyyy-MM-dd)

    startAfterId string
    limit number

Responses

Successfully retrieved transactions.

Schema

    traceId string
    message string

    data

    object[]

  • Array [

  • id stringrequired
    endToEndId stringrequired
    externalDestination stringrequired
    externalSource stringrequired
    type stringrequired
    status stringrequired
    amount stringrequired
    currencyCode stringrequired
    platform stringrequired
    referenceNumber stringrequired
    note stringrequired

    sourceWallet

    object

    required

    accountNumber stringrequired
    address stringrequired
    nickname stringrequired
    archived booleanrequired

    destinationWallet

    object

    required

    accountNumber stringrequired
    address stringrequired
    nickname stringrequired
    archived booleanrequired
    asset stringrequired
  • ]

  • pagination

    object

    totalResults numberrequired
    hasMoreResults booleanrequired
Loading...