List Card Transactions
Retrieves paginated transactions for all activated cards of the authenticated user.
Returns three types of transaction events:
- Payment: Regular card transactions (purchases, ATM withdrawals). Can appear immediately after authorization with isPending: true, then update when cleared.
- Refund: Money returned to your account (product returns, cancellations). Only appears after both authorization and clearing are processed.
- Reversal: Cancellation of previous transactions due to technical issues or merchant corrections. Can appear immediately after authorization-level reversals.
The final number might differ slightly, as one thread might contain multiple transactions.
Query parameters
Comma-separated list of card tokens
Maximum number of transactions to return
Number of transactions to skip
Filter transactions before this date (ISO 8601 format, e.g., "2023-04-01T00:00:00Z")
Filter transactions after this date (ISO 8601 format, e.g., "2023-03-01T00:00:00Z")
Filter by billing currency code
Filter by transaction currency code
Filter by Merchant Category Code (MCC)
Filter by transaction type code (e.g., "00" for Purchase, "01" for Withdrawal)
Response
Successful response with paginated transaction events
Example response
{
"count": 25,
"next": "/api/v1/cards/transactions?limit=100&offset=100",
"results": [
{
"threadId": "1234567890"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.