transactions
transactions
Page 99 of 105.
Overview
-
#2353
#2353
Online purchase
-
#2354
#2354
Dividend payment
-
#2355
#2355
Interest charge
-
#2356
#2356
Return credit
-
#2357
#2357
Account service fee
-
#2358
#2358
Utility bill payment
-
#2359
#2359
Dividend payment
-
#2360
#2360
Online purchase
-
#2361
#2361
Wire transfer sent
-
#2362
#2362
Direct deposit
-
#2363
#2363
Interest credit
-
#2364
#2364
Payoff transfer
-
#2365
#2365
Cash withdrawal
-
#2366
#2366
Utility bill payment
-
#2367
#2367
Bank transfer out
-
#2368
#2368
Savings transfer
-
#2369
#2369
Utility bill payment
-
#2370
#2370
ATM fee
-
#2371
#2371
Credit card interest
-
#2372
#2372
Interest credit
-
#2373
#2373
Purchase refund
-
#2374
#2374
Loan interest payment
-
#2375
#2375
Overdraft fee
-
#2376
#2376
Streaming service
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": 2353,
"accountId": 235,
"kind": "payment",
"amount": -1941.26,
"currency": "EUR",
"description": "Online purchase",
"status": "completed",
"occurredAt": "2026-03-30T08:39:27.303Z",
"createdAt": "2026-03-30T08:39:51.386Z"
},
{
"id": 2354,
"accountId": 214,
"kind": "deposit",
"amount": 5917.58,
"currency": "CAD",
"description": "Dividend payment",
"status": "completed",
"occurredAt": "2025-04-19T21:44:24.454Z",
"createdAt": "2025-04-19T21:44:59.862Z"
},
{
"id": 2355,
"accountId": 348,
"kind": "interest",
"amount": 4417.07,
"currency": "GBP",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2024-11-02T07:32:58.844Z",
"createdAt": "2024-11-02T07:33:09.924Z"
}
],
"meta": {
"page": 99,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=99&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=100&limit=24",
"prev": "/api/v1/transactions?page=98&limit=24"
}
}