transactions
transactions
Page 76 of 105.
Overview
-
#1801
#1801
ATM fee
-
#1802
#1802
Internal transfer
-
#1803
#1803
Interest charge
-
#1804
#1804
Credit card interest
-
#1805
#1805
Refund credit
-
#1806
#1806
Interest credit
-
#1807
#1807
Check withdrawal
-
#1808
#1808
Grocery store
-
#1809
#1809
Credit card interest
-
#1810
#1810
Wire transfer sent
-
#1811
#1811
Payroll deposit
-
#1812
#1812
Check withdrawal
-
#1813
#1813
Merchant refund
-
#1814
#1814
Payoff transfer
-
#1815
#1815
Purchase refund
-
#1816
#1816
Payoff transfer
-
#1817
#1817
Wire transfer received
-
#1818
#1818
Foreign transaction fee
-
#1819
#1819
Late payment fee
-
#1820
#1820
Savings interest
-
#1821
#1821
Purchase refund
-
#1822
#1822
Bank transfer out
-
#1823
#1823
Return credit
-
#1824
#1824
Phone bill
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": 1801,
"accountId": 54,
"kind": "fee",
"amount": -205.12,
"currency": "CAD",
"description": "ATM fee",
"status": "completed",
"occurredAt": "2024-11-05T19:53:24.432Z",
"createdAt": "2024-11-05T19:54:18.061Z"
},
{
"id": 1802,
"accountId": 376,
"kind": "transfer",
"amount": -2016.94,
"currency": "EUR",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2025-12-04T16:17:39.369Z",
"createdAt": "2025-12-04T16:18:38.584Z"
},
{
"id": 1803,
"accountId": 257,
"kind": "interest",
"amount": 5780.58,
"currency": "CAD",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2025-05-13T10:06:36.418Z",
"createdAt": "2025-05-13T10:07:19.878Z"
}
],
"meta": {
"page": 76,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=76&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=77&limit=24",
"prev": "/api/v1/transactions?page=75&limit=24"
}
}