transactions
transactions
Page 15 of 105.
Overview
-
#337
#337
Overdraft fee
-
#338
#338
ATM fee
-
#339
#339
Return credit
-
#340
#340
Direct deposit
-
#341
#341
Internal transfer
-
#342
#342
Bank transfer out
-
#343
#343
Credit card payment
-
#344
#344
Dispute resolved — credit
-
#345
#345
Cash withdrawal
-
#346
#346
Subscription renewal
-
#347
#347
ATM fee
-
#348
#348
Check withdrawal
-
#349
#349
Grocery store
-
#350
#350
Refund credit
-
#351
#351
Interest charge
-
#352
#352
Savings transfer
-
#353
#353
Subscription renewal
-
#354
#354
Refund credit
-
#355
#355
Loan interest payment
-
#356
#356
ATM fee
-
#357
#357
Merchant refund
-
#358
#358
Foreign transaction fee
-
#359
#359
Purchase refund
-
#360
#360
Cash 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": 337,
"accountId": 220,
"kind": "fee",
"amount": -231.36,
"currency": "GBP",
"description": "Overdraft fee",
"status": "completed",
"occurredAt": "2026-03-25T18:12:09.352Z",
"createdAt": "2026-03-25T18:12:38.227Z"
},
{
"id": 338,
"accountId": 56,
"kind": "fee",
"amount": -4908.61,
"currency": "CNY",
"description": "ATM fee",
"status": "completed",
"occurredAt": "2025-04-07T13:39:04.956Z",
"createdAt": "2025-04-07T13:39:14.519Z"
},
{
"id": 339,
"accountId": 117,
"kind": "refund",
"amount": 59.35,
"currency": "EUR",
"description": "Return credit",
"status": "completed",
"occurredAt": "2024-06-29T01:12:46.516Z",
"createdAt": "2024-06-29T01:13:46.307Z"
}
],
"meta": {
"page": 15,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=15&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=16&limit=24",
"prev": "/api/v1/transactions?page=14&limit=24"
}
}