Retrieve transaction history for any card issued through your partner account.Documentation Index
Fetch the complete documentation index at: https://partner-docs.contro.dev/llms.txt
Use this file to discover all available pages before exploring further.
List card transactions
Fetch transactions for a specific card using cursor-based pagination:Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number |
limit | integer | 20 | Items per page (1–100) |
status | string | - | Filter by transaction status (e.g. accepted, pending, declined). |
type | string | - | Filter by transaction type (e.g. purchase, refund, AUTH, debit). |
from | string | - | ISO 8601 start timestamp (inclusive). |
to | string | - | ISO 8601 end timestamp (inclusive). |
Response
Transaction fields
| Field | Type | Description |
|---|---|---|
id | string | Transaction ID. Example: "tx_abc123" |
type | string | Transaction type. One of purchase, refund, withdrawal, fee |
maskedCardNo | string | null | Last 4 digits of the card number used. Example: "0000" |
direction | string | null | Transaction direction. C: credit, D: debit |
amount | number | null | Transaction amount in the card’s currency unit. Example: 42.50 |
currency | string | null | ISO 4217 currency code. Example: "USD" |
currencyPrecision | number | null | Decimal precision of the transaction currency. Example: 2 |
billingAmount | number | null | Billing amount in the billing currency. Example: 42.50 |
billingCurrencyCode | string | null | ISO 4217 billing currency code. Example: "USD" |
billingCurrencyPrecision | number | null | Decimal precision of the billing currency. Example: 2 |
billingTimestamp | string | null | ISO 8601 billing/clearing timestamp |
status | string | Transaction status. One of pending, completed, declined, reversed |
merchant | string | null | Merchant name. Example: "Coffee Shop" |
timestamp | string | ISO 8601 transaction timestamp. Example: "2026-03-20T14:30:00Z" |
Pagination
To paginate through all transactions, pass thenextCursor from each response: