transactions
transactions
Page 74 of 105.
Overview
-
#1753
#1753
Wire transfer sent
-
#1754
#1754
Account service fee
-
#1755
#1755
Wire transfer received
-
#1756
#1756
ATM fee
-
#1757
#1757
Bank transfer out
-
#1758
#1758
Investment transfer
-
#1759
#1759
Dividend payment
-
#1760
#1760
Purchase refund
-
#1761
#1761
Investment transfer
-
#1762
#1762
Direct deposit
-
#1763
#1763
Investment transfer
-
#1764
#1764
Merchant refund
-
#1765
#1765
Credit card interest
-
#1766
#1766
Late payment fee
-
#1767
#1767
Freelance payment received
-
#1768
#1768
Payroll deposit
-
#1769
#1769
Loan payment
-
#1770
#1770
Return credit
-
#1771
#1771
Purchase refund
-
#1772
#1772
Restaurant charge
-
#1773
#1773
Interest credit
-
#1774
#1774
Account service fee
-
#1775
#1775
Mortgage payment
-
#1776
#1776
Payoff 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": 1753,
"accountId": 127,
"kind": "withdrawal",
"amount": -3644.27,
"currency": "JPY",
"description": "Wire transfer sent",
"status": "completed",
"occurredAt": "2026-02-24T23:32:29.876Z",
"createdAt": "2026-02-24T23:32:59.789Z"
},
{
"id": 1754,
"accountId": 280,
"kind": "fee",
"amount": -1980.69,
"currency": "GBP",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2024-10-04T15:40:47.401Z",
"createdAt": "2024-10-04T15:40:54.846Z"
},
{
"id": 1755,
"accountId": 183,
"kind": "deposit",
"amount": 3202.83,
"currency": "AUD",
"description": "Wire transfer received",
"status": "pending",
"occurredAt": "2024-09-05T08:34:52.018Z",
"createdAt": "2024-09-05T08:35:12.211Z"
}
],
"meta": {
"page": 74,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=74&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=75&limit=24",
"prev": "/api/v1/transactions?page=73&limit=24"
}
}