transactions
transactions
Page 73 of 105.
Overview
-
#1729
#1729
Wire transfer fee
-
#1730
#1730
Internal transfer
-
#1731
#1731
Subscription refund
-
#1732
#1732
Credit card payment
-
#1733
#1733
Loan interest payment
-
#1734
#1734
ATM withdrawal
-
#1735
#1735
Wire transfer fee
-
#1736
#1736
Check withdrawal
-
#1737
#1737
Return credit
-
#1738
#1738
Savings interest
-
#1739
#1739
Return credit
-
#1740
#1740
ATM withdrawal
-
#1741
#1741
ATM fee
-
#1742
#1742
Overdraft fee
-
#1743
#1743
Foreign transaction fee
-
#1744
#1744
Mortgage payment
-
#1745
#1745
Grocery store
-
#1746
#1746
Refund credit
-
#1747
#1747
Late payment fee
-
#1748
#1748
Streaming service
-
#1749
#1749
Rent payment
-
#1750
#1750
Cash withdrawal
-
#1751
#1751
Loan interest payment
-
#1752
#1752
Account 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": 1729,
"accountId": 125,
"kind": "fee",
"amount": -4138.63,
"currency": "GBP",
"description": "Wire transfer fee",
"status": "completed",
"occurredAt": "2025-05-12T05:05:18.740Z",
"createdAt": "2025-05-12T05:05:59.419Z"
},
{
"id": 1730,
"accountId": 87,
"kind": "transfer",
"amount": 1503.33,
"currency": "CAD",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2025-12-14T13:46:59.116Z",
"createdAt": "2025-12-14T13:47:57.558Z"
},
{
"id": 1731,
"accountId": 174,
"kind": "refund",
"amount": 3835.91,
"currency": "EUR",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2024-09-12T06:02:45.286Z",
"createdAt": "2024-09-12T06:02:51.390Z"
}
],
"meta": {
"page": 73,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=73&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=74&limit=24",
"prev": "/api/v1/transactions?page=72&limit=24"
}
}