transactions
transactions
Page 59 of 105.
Overview
-
#1393
#1393
Account service fee
-
#1394
#1394
Internal transfer
-
#1395
#1395
Overdraft fee
-
#1396
#1396
Savings interest
-
#1397
#1397
Savings transfer
-
#1398
#1398
ATM withdrawal
-
#1399
#1399
Restaurant charge
-
#1400
#1400
Monthly maintenance fee
-
#1401
#1401
Investment transfer
-
#1402
#1402
Loan interest payment
-
#1403
#1403
Internal transfer
-
#1404
#1404
Credit card payment
-
#1405
#1405
Subscription refund
-
#1406
#1406
Loan interest payment
-
#1407
#1407
Payoff transfer
-
#1408
#1408
Credit card interest
-
#1409
#1409
ATM fee
-
#1410
#1410
Foreign transaction fee
-
#1411
#1411
Savings interest
-
#1412
#1412
Savings interest
-
#1413
#1413
Check withdrawal
-
#1414
#1414
Cash withdrawal
-
#1415
#1415
Credit card interest
-
#1416
#1416
Subscription refund
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": 1393,
"accountId": 281,
"kind": "fee",
"amount": -3695.27,
"currency": "AUD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2026-01-14T08:23:00.688Z",
"createdAt": "2026-01-14T08:23:10.518Z"
},
{
"id": 1394,
"accountId": 325,
"kind": "transfer",
"amount": 842.22,
"currency": "JPY",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2025-05-22T08:42:09.258Z",
"createdAt": "2025-05-22T08:42:18.731Z"
},
{
"id": 1395,
"accountId": 150,
"kind": "fee",
"amount": -1743.81,
"currency": "USD",
"description": "Overdraft fee",
"status": "completed",
"occurredAt": "2024-08-29T21:10:14.832Z",
"createdAt": "2024-08-29T21:10:24.323Z"
}
],
"meta": {
"page": 59,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=59&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=60&limit=24",
"prev": "/api/v1/transactions?page=58&limit=24"
}
}