transactions
transactions
Page 97 of 105.
Overview
-
#2305
#2305
Check withdrawal
-
#2306
#2306
Return credit
-
#2307
#2307
ATM withdrawal
-
#2308
#2308
ATM withdrawal
-
#2309
#2309
Return credit
-
#2310
#2310
Foreign transaction fee
-
#2311
#2311
ATM fee
-
#2312
#2312
Overdraft fee
-
#2313
#2313
Subscription refund
-
#2314
#2314
Wire transfer fee
-
#2315
#2315
Credit card interest
-
#2316
#2316
Bank transfer out
-
#2317
#2317
Savings interest
-
#2318
#2318
Payroll deposit
-
#2319
#2319
Restaurant charge
-
#2320
#2320
Credit card payment
-
#2321
#2321
Late payment fee
-
#2322
#2322
Cash withdrawal
-
#2323
#2323
Cash deposit
-
#2324
#2324
Investment transfer
-
#2325
#2325
Interest charge
-
#2326
#2326
Interest credit
-
#2327
#2327
Wire transfer fee
-
#2328
#2328
Cash deposit
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": 2305,
"accountId": 312,
"kind": "withdrawal",
"amount": -1308.05,
"currency": "CAD",
"description": "Check withdrawal",
"status": "completed",
"occurredAt": "2024-11-28T10:39:36.901Z",
"createdAt": "2024-11-28T10:40:11.365Z"
},
{
"id": 2306,
"accountId": 322,
"kind": "refund",
"amount": 9074.61,
"currency": "JPY",
"description": "Return credit",
"status": "cancelled",
"occurredAt": "2025-06-05T15:21:12.311Z",
"createdAt": "2025-06-05T15:21:59.463Z"
},
{
"id": 2307,
"accountId": 179,
"kind": "withdrawal",
"amount": -1962.14,
"currency": "GBP",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2024-09-28T05:10:35.455Z",
"createdAt": "2024-09-28T05:10:55.560Z"
}
],
"meta": {
"page": 97,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=97&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=98&limit=24",
"prev": "/api/v1/transactions?page=96&limit=24"
}
}