Get Card Transactions
Cards
Get Card Transactions
Get transaction history for a specific card — merchant name, amount, status, and timestamps. GET /cards//transactions.
GET
Get Card Transactions
Documentation Index
Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieve a paginated list of all transactions made with a specific card, including purchases, refunds, and funding operations.Path Parameters
| Parameter | Type | Description |
|---|---|---|
cardId | string | The unique card identifier |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (default: 1) |
Example Usage
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique transaction identifier |
type | string | DEBIT (purchases, fees) or CREDIT (funding, refunds) |
amount | number | Transaction amount in USD |
currency | string | Transaction currency (usually USD) |
merchant | string | Merchant name |
logo | string | Merchant logo URL (nullable) |
status | string | COMPLETED, PENDING, DECLINED, REFUNDED, REVERSED |
description | string | Network narration or payment code (e.g. "Account verification") |
category | string | Human-readable transaction category (e.g. "Card Charge", "Cross-border Fee", "Card Funding"). Use this to distinguish the actual payment from associated fees. |
createdAt | string | Transaction timestamp (YYYY-MM-DD HH:MM:SS UTC) |
Category Values
| Value | Meaning |
|---|---|
Card Charge | The actual merchant payment |
Cross-border Fee | International surcharge attached to a cross-border charge |
Card Funding | Balance top-up |
Card Withdrawal | Balance unload |
Refund | Merchant refund |
Reversal | Transaction reversal |
Declined | Declined authorisation attempt |
Decline Fee (Domestic) | Fee for a declined domestic authorisation |
Decline Fee (International) | Fee for a declined international authorisation |
Pagination
| Field | Type | Description |
|---|---|---|
currentPage | integer | Current page number |
totalItems | integer | Total number of transactions |
totalPages | integer | Total number of pages |
hasMore | boolean | Whether more pages are available |
Authorizations
JWT access token obtained from /auth/token

