transactions
transactions
Page 4 of 105.
Overview
-
#73
#73
Dividend payment
-
#74
#74
Return credit
-
#75
#75
Savings interest
-
#76
#76
Account transfer
-
#77
#77
Streaming service
-
#78
#78
Cash withdrawal
-
#79
#79
Savings interest
-
#80
#80
Savings interest
-
#81
#81
Foreign transaction fee
-
#82
#82
Utility bill payment
-
#83
#83
Internal transfer
-
#84
#84
Dividend payment
-
#85
#85
Savings interest
-
#86
#86
Savings interest
-
#87
#87
Rent payment
-
#88
#88
Return credit
-
#89
#89
Interest charge
-
#90
#90
Direct deposit
-
#91
#91
Monthly maintenance fee
-
#92
#92
Wire transfer sent
-
#93
#93
Interest credit
-
#94
#94
Merchant refund
-
#95
#95
Insurance premium
-
#96
#96
Refund credit
Request
curl example
curl -sS \ "https://example-data.com/api/v1/transactions?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/transactions.d.ts https://example-data.com/types/transactions.d.ts
import type { Transaction, ListEnvelope } from "./types/transactions";
const res = await fetch(
"https://example-data.com/api/v1/transactions?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Transaction>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/transactions",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 73,
"accountId": 108,
"kind": "deposit",
"amount": 8624.5,
"currency": "CNY",
"description": "Dividend payment",
"status": "pending",
"occurredAt": "2025-06-11T13:18:59.082Z",
"createdAt": "2025-06-11T13:19:05.013Z"
},
{
"id": 74,
"accountId": 5,
"kind": "refund",
"amount": 5570.51,
"currency": "CHF",
"description": "Return credit",
"status": "completed",
"occurredAt": "2025-11-10T22:57:28.367Z",
"createdAt": "2025-11-10T22:57:41.835Z"
},
{
"id": 75,
"accountId": 137,
"kind": "interest",
"amount": 9312.01,
"currency": "AUD",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2026-03-02T19:23:16.719Z",
"createdAt": "2026-03-02T19:23:50.473Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=4&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=5&limit=24",
"prev": "/api/v1/transactions?page=3&limit=24"
}
}