transactions
transactions
Page 51 of 105.
Overview
-
#1201
#1201
Cash deposit
-
#1202
#1202
Interest credit
-
#1203
#1203
Overdraft fee
-
#1204
#1204
Subscription renewal
-
#1205
#1205
Payoff transfer
-
#1206
#1206
Wire transfer fee
-
#1207
#1207
Savings interest
-
#1208
#1208
Foreign transaction fee
-
#1209
#1209
Savings transfer
-
#1210
#1210
Bank transfer out
-
#1211
#1211
Subscription refund
-
#1212
#1212
Account transfer
-
#1213
#1213
ATM fee
-
#1214
#1214
Credit card payment
-
#1215
#1215
Purchase refund
-
#1216
#1216
Interest charge
-
#1217
#1217
Insurance premium
-
#1218
#1218
Restaurant charge
-
#1219
#1219
Cash deposit
-
#1220
#1220
Payroll deposit
-
#1221
#1221
Wire transfer received
-
#1222
#1222
Check withdrawal
-
#1223
#1223
Bank transfer out
-
#1224
#1224
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": 1201,
"accountId": 231,
"kind": "deposit",
"amount": 828.01,
"currency": "JPY",
"description": "Cash deposit",
"status": "completed",
"occurredAt": "2026-05-09T10:54:28.549Z",
"createdAt": "2026-05-09T10:54:49.140Z"
},
{
"id": 1202,
"accountId": 214,
"kind": "deposit",
"amount": 8524.34,
"currency": "CAD",
"description": "Interest credit",
"status": "completed",
"occurredAt": "2024-11-26T23:51:42.968Z",
"createdAt": "2024-11-26T23:51:50.340Z"
},
{
"id": 1203,
"accountId": 423,
"kind": "fee",
"amount": -817.42,
"currency": "CHF",
"description": "Overdraft fee",
"status": "completed",
"occurredAt": "2024-08-08T10:38:59.235Z",
"createdAt": "2024-08-08T10:39:27.894Z"
}
],
"meta": {
"page": 51,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=51&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=52&limit=24",
"prev": "/api/v1/transactions?page=50&limit=24"
}
}