GET
/api/v2/transactionsGet paginated transactions with advanced filtering
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| page (query) | unknown | No | Page number (1-based) |
| pageSize (query) | unknown | No | Number of items per page |
| types (query) | array of card_payment | card_withdrawal | purchase | card_topup | card_unload | card_payment_reversal | … | No | Transaction types to include. Repeat the query parameter to filter by more than one value. Possible values: card_payment, card_withdrawal, purchase, card_topup, card_unload, card_payment_reversal, deposit, crypto_deposit, withdrawal, crypto_withdrawal, crypto_refund, transfer, transfer_in, transfer_out, transfer_from_master, transfer_to_master, payment_transfer, master_to_user_transfer_initiated, internal_payment, wallet_credit, wallet_debit, p2p_send, p2p_receive, balance_transfer, card_payment_fee, card_fee, fees, card_issuance_fee, card_topup_fee, card_decline_fee, fee_reversal, exchange, crypto_to_quantum, crypto_to_quantum_transfer, quantum_to_crypto_exchange, payout, credit, debit, card_freeze, card_unfreeze. |
| statuses (query) | array of pending | processing | completed | failed | cancelled | on_hold | … | No | Transaction statuses to include. Repeat the query parameter to filter by more than one value. Possible values: pending, processing, completed, failed, cancelled, on_hold, onhold, unknown. |
| startDate (query) | string (date-time) | No | Start date for filtering |
| endDate (query) | string (date-time) | No | End date for filtering |
| search (query) | string | No | Search term for description or merchant |
| tradeId (query) | string | No | External trade/order identifier |
| minAmount (query) | unknown | No | Minimum transaction amount |
| maxAmount (query) | unknown | No | Maximum transaction amount |
| sources (query) | array of string | No | Transaction sources to filter by |
| cardIds (query) | array of unknown | No | Card IDs to filter by |
| walletIds (query) | array of unknown | No | Wallet IDs to filter by |
| sortBy (query) | string | No | Sort field (date, amount, type) |
| sortOrder (query) | string | No | Sort order (asc, desc) |
| userId (query) | unknown | No |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| Data | array of TransactionSummary | No | |
| Pagination | PaginationInfo | No | Pagination information |
| Stats | TransactionSummaryStats | No | Transaction summary statistics |
400 — Bad Request
| Field | Type | Required | Description |
|---|---|---|---|
| type | string | No | |
| title | string | No | |
| status | unknown | No | |
| detail | string | No | |
| instance | string | No |
401 — Unauthorized
| Field | Type | Required | Description |
|---|---|---|---|
| type | string | No | |
| title | string | No | |
| status | unknown | No | |
| detail | string | No | |
| instance | string | No |
500 — Internal Server Error
Example request
curl -X GET "https://{base_url}/api/v2/transactions" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.