Get Transactions
curl --request GET \
--url https://api.fyatu.com/api/v3/account/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fyatu.com/api/v3/account/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fyatu.com/api/v3/account/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fyatu.com/api/v3/account/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fyatu.com/api/v3/account/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fyatu.com/api/v3/account/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3/account/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Transactions retrieved successfully",
"data": {
"pagination": {
"page": 1,
"perPage": 50,
"totalItems": 7,
"totalPages": 1
},
"transactions": [
{
"transactionId": "DEP69FE561280613",
"reference": "CQDX4LIBSORF",
"type": "CREDIT",
"category": "DEPOSIT",
"amount": 100,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Deposit of 100 USD",
"createdAt": "2026-05-08T21:30:58Z",
"updatedAt": "2026-05-08T21:30:58Z"
},
{
"transactionId": "FYB69F984AA38EFB",
"reference": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "DEBIT",
"category": "ISSUANCE",
"amount": 30,
"fee": 5,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Issuance - 515253******1234 (Alice Example)",
"createdAt": "2026-05-05T08:00:00Z",
"updatedAt": "2026-05-05T08:00:15Z"
},
{
"transactionId": "FYB69E12BC34DE56",
"reference": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "DEBIT",
"category": "FUNDING",
"amount": 50,
"fee": 0.5,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Funding - 515253******1234 (Alice Example)",
"createdAt": "2026-05-05T09:00:00Z",
"updatedAt": "2026-05-05T09:00:00Z"
},
{
"transactionId": "FYB69A78CD90EF12",
"reference": "b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
"type": "CREDIT",
"category": "UNLOADING",
"amount": 20,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Unload - 515253******5678 (Bob Example)",
"createdAt": "2026-05-06T10:00:00Z",
"updatedAt": "2026-05-06T10:00:00Z"
},
{
"transactionId": "FYB69B11CC22DD33",
"reference": "b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
"type": "CREDIT",
"category": "TERMINATION",
"amount": 15,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Termination - 515253******5678 (Bob Example)",
"createdAt": "2026-05-07T11:00:00Z",
"updatedAt": "2026-05-07T11:00:00Z"
},
{
"transactionId": "FYB69EE099B77FBB",
"reference": "P2P69EE099B741DB",
"type": "CREDIT",
"category": "TRANSFER",
"amount": 25,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Bob Example",
"createdAt": "2026-05-07T14:00:00Z",
"updatedAt": "2026-05-07T14:00:00Z"
},
{
"transactionId": "DEP67EA9E8789B79",
"reference": "c802f8a9db4c15878ea43bdff610261ff1df7726dccfc4b6365e4e44d62dac88",
"type": "CREDIT",
"category": "DEPOSIT",
"amount": 43.65,
"fee": 1.35,
"currency": "USDT",
"status": "COMPLETED",
"description": "USDT",
"createdAt": "2026-05-08T09:00:00Z",
"updatedAt": "2026-05-08T09:00:00Z"
}
]
},
"meta": {
"requestId": "req_7af4d2b8e91c35fa4b21890e",
"timestamp": "2026-05-08T21:42:53Z"
}
}{
"success": false,
"status": 401,
"message": "Unable to identify business",
"error": {
"code": "AUTH_TOKEN_INVALID"
},
"meta": {
"requestId": "req_abc123",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}Account
Get Transactions
List all business wallet transactions with category, status, and fee data. GET /account/transactions.
GET
/
account
/
transactions
Get Transactions
curl --request GET \
--url https://api.fyatu.com/api/v3/account/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fyatu.com/api/v3/account/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fyatu.com/api/v3/account/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fyatu.com/api/v3/account/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fyatu.com/api/v3/account/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fyatu.com/api/v3/account/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fyatu.com/api/v3/account/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"status": 200,
"message": "Transactions retrieved successfully",
"data": {
"pagination": {
"page": 1,
"perPage": 50,
"totalItems": 7,
"totalPages": 1
},
"transactions": [
{
"transactionId": "DEP69FE561280613",
"reference": "CQDX4LIBSORF",
"type": "CREDIT",
"category": "DEPOSIT",
"amount": 100,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Deposit of 100 USD",
"createdAt": "2026-05-08T21:30:58Z",
"updatedAt": "2026-05-08T21:30:58Z"
},
{
"transactionId": "FYB69F984AA38EFB",
"reference": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "DEBIT",
"category": "ISSUANCE",
"amount": 30,
"fee": 5,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Issuance - 515253******1234 (Alice Example)",
"createdAt": "2026-05-05T08:00:00Z",
"updatedAt": "2026-05-05T08:00:15Z"
},
{
"transactionId": "FYB69E12BC34DE56",
"reference": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1",
"type": "DEBIT",
"category": "FUNDING",
"amount": 50,
"fee": 0.5,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Funding - 515253******1234 (Alice Example)",
"createdAt": "2026-05-05T09:00:00Z",
"updatedAt": "2026-05-05T09:00:00Z"
},
{
"transactionId": "FYB69A78CD90EF12",
"reference": "b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
"type": "CREDIT",
"category": "UNLOADING",
"amount": 20,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Unload - 515253******5678 (Bob Example)",
"createdAt": "2026-05-06T10:00:00Z",
"updatedAt": "2026-05-06T10:00:00Z"
},
{
"transactionId": "FYB69B11CC22DD33",
"reference": "b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
"type": "CREDIT",
"category": "TERMINATION",
"amount": 15,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Card Termination - 515253******5678 (Bob Example)",
"createdAt": "2026-05-07T11:00:00Z",
"updatedAt": "2026-05-07T11:00:00Z"
},
{
"transactionId": "FYB69EE099B77FBB",
"reference": "P2P69EE099B741DB",
"type": "CREDIT",
"category": "TRANSFER",
"amount": 25,
"fee": 0,
"currency": "USD",
"status": "COMPLETED",
"description": "Bob Example",
"createdAt": "2026-05-07T14:00:00Z",
"updatedAt": "2026-05-07T14:00:00Z"
},
{
"transactionId": "DEP67EA9E8789B79",
"reference": "c802f8a9db4c15878ea43bdff610261ff1df7726dccfc4b6365e4e44d62dac88",
"type": "CREDIT",
"category": "DEPOSIT",
"amount": 43.65,
"fee": 1.35,
"currency": "USDT",
"status": "COMPLETED",
"description": "USDT",
"createdAt": "2026-05-08T09:00:00Z",
"updatedAt": "2026-05-08T09:00:00Z"
}
]
},
"meta": {
"requestId": "req_7af4d2b8e91c35fa4b21890e",
"timestamp": "2026-05-08T21:42:53Z"
}
}{
"success": false,
"status": 401,
"message": "Unable to identify business",
"error": {
"code": "AUTH_TOKEN_INVALID"
},
"meta": {
"requestId": "req_abc123",
"timestamp": "2026-01-05T10:30:00+00:00"
}
}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
const response = await fetch('https://api.fyatu.com/api/v3/account/transactions?page=1&perPage=50', {
headers: {
'Authorization': `Bearer ${accessToken}`
}
});
const { data } = await response.json();
console.log(`Total transactions: ${data.pagination.totalItems}`);
data.transactions.forEach(tx => {
console.log(`${tx.type} (${tx.category}): $${tx.amount} — ${tx.description}`);
console.log(` Status: ${tx.status}, Fee: $${tx.fee}`);
});
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 ⌘I

