transactions
transactions
Page 63 of 105.
Overview
-
#1489
#1489
Rent payment
-
#1490
#1490
Interest charge
-
#1491
#1491
Cash withdrawal
-
#1492
#1492
Investment transfer
-
#1493
#1493
Cash deposit
-
#1494
#1494
ATM fee
-
#1495
#1495
Savings transfer
-
#1496
#1496
Account service fee
-
#1497
#1497
Credit card interest
-
#1498
#1498
ATM withdrawal
-
#1499
#1499
Savings transfer
-
#1500
#1500
Overdraft fee
-
#1501
#1501
Purchase refund
-
#1502
#1502
Utility bill payment
-
#1503
#1503
Freelance payment received
-
#1504
#1504
Mortgage payment
-
#1505
#1505
Subscription refund
-
#1506
#1506
Bank transfer out
-
#1507
#1507
Purchase refund
-
#1508
#1508
Overdraft fee
-
#1509
#1509
Refund credit
-
#1510
#1510
Interest charge
-
#1511
#1511
Investment transfer
-
#1512
#1512
Dividend payment
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": 1489,
"accountId": 194,
"kind": "payment",
"amount": -4249.56,
"currency": "CNY",
"description": "Rent payment",
"status": "completed",
"occurredAt": "2026-03-11T14:15:31.541Z",
"createdAt": "2026-03-11T14:16:12.571Z"
},
{
"id": 1490,
"accountId": 102,
"kind": "interest",
"amount": 6687.21,
"currency": "JPY",
"description": "Interest charge",
"status": "pending",
"occurredAt": "2025-12-23T02:52:18.012Z",
"createdAt": "2025-12-23T02:52:44.957Z"
},
{
"id": 1491,
"accountId": 366,
"kind": "withdrawal",
"amount": -19.03,
"currency": "CNY",
"description": "Cash withdrawal",
"status": "completed",
"occurredAt": "2024-10-25T22:52:26.956Z",
"createdAt": "2024-10-25T22:53:07.679Z"
}
],
"meta": {
"page": 63,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=63&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=64&limit=24",
"prev": "/api/v1/transactions?page=62&limit=24"
}
}