transactions
transactions
Page 77 of 105.
Overview
-
#1825
#1825
Cash withdrawal
-
#1826
#1826
Cash withdrawal
-
#1827
#1827
Refund credit
-
#1828
#1828
Interest charge
-
#1829
#1829
Interest charge
-
#1830
#1830
Check withdrawal
-
#1831
#1831
Interest charge
-
#1832
#1832
Dispute resolved — credit
-
#1833
#1833
Payoff transfer
-
#1834
#1834
Savings interest
-
#1835
#1835
Interest charge
-
#1836
#1836
Check withdrawal
-
#1837
#1837
Account transfer
-
#1838
#1838
Wire transfer sent
-
#1839
#1839
Account transfer
-
#1840
#1840
Loan interest payment
-
#1841
#1841
Grocery store
-
#1842
#1842
Subscription refund
-
#1843
#1843
Bank transfer out
-
#1844
#1844
Internal transfer
-
#1845
#1845
Dispute resolved — credit
-
#1846
#1846
Payoff transfer
-
#1847
#1847
Subscription renewal
-
#1848
#1848
Wire transfer fee
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": 1825,
"accountId": 488,
"kind": "withdrawal",
"amount": -3990.46,
"currency": "CHF",
"description": "Cash withdrawal",
"status": "completed",
"occurredAt": "2025-07-22T13:22:55.908Z",
"createdAt": "2025-07-22T13:23:42.353Z"
},
{
"id": 1826,
"accountId": 186,
"kind": "withdrawal",
"amount": -2702.06,
"currency": "CAD",
"description": "Cash withdrawal",
"status": "completed",
"occurredAt": "2026-04-16T15:12:22.887Z",
"createdAt": "2026-04-16T15:13:22.702Z"
},
{
"id": 1827,
"accountId": 201,
"kind": "deposit",
"amount": 4684.85,
"currency": "CHF",
"description": "Refund credit",
"status": "completed",
"occurredAt": "2026-01-02T17:19:20.723Z",
"createdAt": "2026-01-02T17:19:22.833Z"
}
],
"meta": {
"page": 77,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=77&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=78&limit=24",
"prev": "/api/v1/transactions?page=76&limit=24"
}
}