transactions
transactions
Page 14 of 105.
Overview
-
#313
#313
Internal transfer
-
#314
#314
Dispute resolved — credit
-
#315
#315
Dispute resolved — credit
-
#316
#316
Internal transfer
-
#317
#317
Direct deposit
-
#318
#318
Refund credit
-
#319
#319
Late payment fee
-
#320
#320
Subscription refund
-
#321
#321
Interest credit
-
#322
#322
Credit card interest
-
#323
#323
Online purchase
-
#324
#324
Insurance premium
-
#325
#325
Account service fee
-
#326
#326
Return credit
-
#327
#327
Interest charge
-
#328
#328
Check withdrawal
-
#329
#329
Account service fee
-
#330
#330
Bank transfer out
-
#331
#331
Mortgage payment
-
#332
#332
Dividend payment
-
#333
#333
Wire transfer sent
-
#334
#334
Dividend payment
-
#335
#335
Overdraft fee
-
#336
#336
Bank transfer out
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": 313,
"accountId": 42,
"kind": "transfer",
"amount": 3886.82,
"currency": "GBP",
"description": "Internal transfer",
"status": "pending",
"occurredAt": "2025-08-07T23:07:40.905Z",
"createdAt": "2025-08-07T23:08:24.655Z"
},
{
"id": 314,
"accountId": 334,
"kind": "refund",
"amount": 601.74,
"currency": "EUR",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2024-06-28T11:20:14.286Z",
"createdAt": "2024-06-28T11:20:27.817Z"
},
{
"id": 315,
"accountId": 196,
"kind": "refund",
"amount": 6612.72,
"currency": "CNY",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2025-10-11T03:59:17.724Z",
"createdAt": "2025-10-11T03:59:48.180Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=14&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=15&limit=24",
"prev": "/api/v1/transactions?page=13&limit=24"
}
}