transactions
transactions
Page 29 of 105.
Overview
-
#673
#673
Dividend payment
-
#674
#674
Freelance payment received
-
#675
#675
Savings interest
-
#676
#676
Savings interest
-
#677
#677
Check withdrawal
-
#678
#678
Refund credit
-
#679
#679
Interest charge
-
#680
#680
Account transfer
-
#681
#681
Check withdrawal
-
#682
#682
Check withdrawal
-
#683
#683
ATM withdrawal
-
#684
#684
Bank transfer out
-
#685
#685
Credit card payment
-
#686
#686
Merchant refund
-
#687
#687
Overdraft fee
-
#688
#688
Freelance payment received
-
#689
#689
Savings transfer
-
#690
#690
Loan interest payment
-
#691
#691
Credit card interest
-
#692
#692
Overdraft fee
-
#693
#693
Bank transfer out
-
#694
#694
Account transfer
-
#695
#695
Utility bill payment
-
#696
#696
Savings transfer
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": 673,
"accountId": 110,
"kind": "deposit",
"amount": 5031.26,
"currency": "USD",
"description": "Dividend payment",
"status": "completed",
"occurredAt": "2026-05-08T20:43:41.953Z",
"createdAt": "2026-05-08T20:44:24.654Z"
},
{
"id": 674,
"accountId": 45,
"kind": "deposit",
"amount": 8071.39,
"currency": "CAD",
"description": "Freelance payment received",
"status": "completed",
"occurredAt": "2025-07-31T15:36:55.846Z",
"createdAt": "2025-07-31T15:37:41.122Z"
},
{
"id": 675,
"accountId": 375,
"kind": "interest",
"amount": -193.13,
"currency": "JPY",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2026-02-17T20:25:53.523Z",
"createdAt": "2026-02-17T20:26:35.160Z"
}
],
"meta": {
"page": 29,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=29&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=30&limit=24",
"prev": "/api/v1/transactions?page=28&limit=24"
}
}