transactions
transactions
Page 56 of 105.
Overview
-
#1321
#1321
Utility bill payment
-
#1322
#1322
ATM withdrawal
-
#1323
#1323
Account transfer
-
#1324
#1324
Payoff transfer
-
#1325
#1325
Loan interest payment
-
#1326
#1326
Account service fee
-
#1327
#1327
Merchant refund
-
#1328
#1328
Savings transfer
-
#1329
#1329
Internal transfer
-
#1330
#1330
Cash deposit
-
#1331
#1331
Payroll deposit
-
#1332
#1332
Credit card interest
-
#1333
#1333
Merchant refund
-
#1334
#1334
Late payment fee
-
#1335
#1335
Account transfer
-
#1336
#1336
Account transfer
-
#1337
#1337
Cash withdrawal
-
#1338
#1338
Payroll deposit
-
#1339
#1339
Overdraft fee
-
#1340
#1340
Restaurant charge
-
#1341
#1341
Credit card interest
-
#1342
#1342
Check withdrawal
-
#1343
#1343
Payoff transfer
-
#1344
#1344
ATM withdrawal
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": 1321,
"accountId": 506,
"kind": "payment",
"amount": -2528.14,
"currency": "EUR",
"description": "Utility bill payment",
"status": "completed",
"occurredAt": "2026-01-01T20:05:40.910Z",
"createdAt": "2026-01-01T20:05:44.184Z"
},
{
"id": 1322,
"accountId": 223,
"kind": "withdrawal",
"amount": -1377.28,
"currency": "CNY",
"description": "ATM withdrawal",
"status": "cancelled",
"occurredAt": "2024-12-01T00:24:09.994Z",
"createdAt": "2024-12-01T00:25:08.823Z"
},
{
"id": 1323,
"accountId": 176,
"kind": "transfer",
"amount": 4988.07,
"currency": "EUR",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-06-11T13:05:41.616Z",
"createdAt": "2025-06-11T13:06:31.054Z"
}
],
"meta": {
"page": 56,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=56&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=57&limit=24",
"prev": "/api/v1/transactions?page=55&limit=24"
}
}