transactions
transactions
Page 58 of 105.
Overview
-
#1369
#1369
Account service fee
-
#1370
#1370
Overdraft fee
-
#1371
#1371
Internal transfer
-
#1372
#1372
Utility bill payment
-
#1373
#1373
Investment transfer
-
#1374
#1374
Utility bill payment
-
#1375
#1375
Utility bill payment
-
#1376
#1376
Dispute resolved — credit
-
#1377
#1377
Overdraft fee
-
#1378
#1378
Wire transfer sent
-
#1379
#1379
ATM withdrawal
-
#1380
#1380
Direct deposit
-
#1381
#1381
Interest charge
-
#1382
#1382
Investment transfer
-
#1383
#1383
Check withdrawal
-
#1384
#1384
Purchase refund
-
#1385
#1385
Payoff transfer
-
#1386
#1386
Foreign transaction fee
-
#1387
#1387
Subscription renewal
-
#1388
#1388
Interest credit
-
#1389
#1389
Savings interest
-
#1390
#1390
Cash deposit
-
#1391
#1391
Internal transfer
-
#1392
#1392
Loan interest payment
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": 1369,
"accountId": 280,
"kind": "fee",
"amount": -2014.33,
"currency": "GBP",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2024-07-10T12:27:42.600Z",
"createdAt": "2024-07-10T12:27:48.174Z"
},
{
"id": 1370,
"accountId": 307,
"kind": "fee",
"amount": -2096.23,
"currency": "USD",
"description": "Overdraft fee",
"status": "pending",
"occurredAt": "2026-05-01T23:05:18.949Z",
"createdAt": "2026-05-01T23:05:44.200Z"
},
{
"id": 1371,
"accountId": 448,
"kind": "transfer",
"amount": 3397.48,
"currency": "CHF",
"description": "Internal transfer",
"status": "pending",
"occurredAt": "2024-06-25T16:11:04.871Z",
"createdAt": "2024-06-25T16:12:02.397Z"
}
],
"meta": {
"page": 58,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=58&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=59&limit=24",
"prev": "/api/v1/transactions?page=57&limit=24"
}
}