Get Transactions
Account
Get Transactions
List all business wallet transactions with category, status, and fee data. GET /account/transactions.
GET
Get 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 on your business account. This includes card issuance, funding, unloading, termination, transfers, collections, payouts, and deposits.Filtering
| Parameter | Description |
|---|---|
type | Filter by transaction direction: CREDIT or DEBIT |
status | Filter by status: PENDING, COMPLETED, FAILED, PROCESSING |
Pagination
| Parameter | Default | Max |
|---|---|---|
page | 1 | - |
perPage | 50 | 100 |
Response Fields
| Field | Type | Description |
|---|---|---|
transactionId | string | Unique transaction batch ID |
reference | string | Card ID, payment reference, or on-chain hash depending on category |
type | string | CREDIT or DEBIT |
category | string | DEPOSIT, WITHDRAW, ISSUANCE, FUNDING, UNLOADING, TERMINATION, TRANSFER, COLLECTION, PAYOUT, AIRTIME |
amount | number | Transaction amount |
fee | number | Fee charged for this transaction |
currency | string | USD or USDT for crypto deposits |
status | string | PENDING, COMPLETED, FAILED, or PROCESSING |
description | string | Cardholder name, counterparty, or asset name |
createdAt | string | ISO 8601 timestamp |
updatedAt | string | ISO 8601 timestamp of last status change |
Example Usage
Authorizations
JWT access token obtained from /auth/token
Query Parameters
Page number
Required range:
x >= 1Items per page (max 100)
Required range:
1 <= x <= 100Filter by transaction type
Available options:
CREDIT, DEBIT Filter by status
Available options:
PENDING, COMPLETED, FAILED 
