transactions
transactions
Page 93 of 105.
Overview
-
#2209
#2209
ATM fee
-
#2210
#2210
Direct deposit
-
#2211
#2211
Bank transfer out
-
#2212
#2212
Freelance payment received
-
#2213
#2213
Dispute resolved — credit
-
#2214
#2214
Account transfer
-
#2215
#2215
Loan interest payment
-
#2216
#2216
Utility bill payment
-
#2217
#2217
ATM fee
-
#2218
#2218
Late payment fee
-
#2219
#2219
Return credit
-
#2220
#2220
Freelance payment received
-
#2221
#2221
Late payment fee
-
#2222
#2222
Dispute resolved — credit
-
#2223
#2223
Credit card interest
-
#2224
#2224
Monthly maintenance fee
-
#2225
#2225
Savings interest
-
#2226
#2226
Late payment fee
-
#2227
#2227
ATM withdrawal
-
#2228
#2228
Payroll deposit
-
#2229
#2229
Rent payment
-
#2230
#2230
Wire transfer sent
-
#2231
#2231
Rent payment
-
#2232
#2232
Credit card interest
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": 2209,
"accountId": 55,
"kind": "fee",
"amount": -3226,
"currency": "GBP",
"description": "ATM fee",
"status": "completed",
"occurredAt": "2024-10-20T21:40:24.351Z",
"createdAt": "2024-10-20T21:40:28.465Z"
},
{
"id": 2210,
"accountId": 267,
"kind": "deposit",
"amount": 4232.66,
"currency": "EUR",
"description": "Direct deposit",
"status": "failed",
"occurredAt": "2024-09-14T13:38:20.277Z",
"createdAt": "2024-09-14T13:39:03.527Z"
},
{
"id": 2211,
"accountId": 505,
"kind": "withdrawal",
"amount": -2137.85,
"currency": "GBP",
"description": "Bank transfer out",
"status": "completed",
"occurredAt": "2026-02-23T03:05:04.285Z",
"createdAt": "2026-02-23T03:06:00.974Z"
}
],
"meta": {
"page": 93,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=93&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=94&limit=24",
"prev": "/api/v1/transactions?page=92&limit=24"
}
}