transactions
transactions
Page 90 of 105.
Overview
-
#2137
#2137
Overdraft fee
-
#2138
#2138
Loan interest payment
-
#2139
#2139
Interest charge
-
#2140
#2140
Late payment fee
-
#2141
#2141
Overdraft fee
-
#2142
#2142
Bank transfer out
-
#2143
#2143
Dispute resolved — credit
-
#2144
#2144
Check withdrawal
-
#2145
#2145
Wire transfer fee
-
#2146
#2146
Interest credit
-
#2147
#2147
Restaurant charge
-
#2148
#2148
Subscription refund
-
#2149
#2149
Dispute resolved — credit
-
#2150
#2150
Wire transfer fee
-
#2151
#2151
Investment transfer
-
#2152
#2152
Account transfer
-
#2153
#2153
Merchant refund
-
#2154
#2154
Subscription refund
-
#2155
#2155
Loan payment
-
#2156
#2156
Bank transfer out
-
#2157
#2157
Wire transfer received
-
#2158
#2158
Wire transfer sent
-
#2159
#2159
Subscription refund
-
#2160
#2160
Investment 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": 2137,
"accountId": 480,
"kind": "fee",
"amount": -3004.23,
"currency": "CHF",
"description": "Overdraft fee",
"status": "completed",
"occurredAt": "2025-03-13T00:38:26.908Z",
"createdAt": "2025-03-13T00:39:18.093Z"
},
{
"id": 2138,
"accountId": 208,
"kind": "interest",
"amount": -298.08,
"currency": "CNY",
"description": "Loan interest payment",
"status": "completed",
"occurredAt": "2024-09-02T14:33:27.956Z",
"createdAt": "2024-09-02T14:33:54.629Z"
},
{
"id": 2139,
"accountId": 464,
"kind": "interest",
"amount": -447.01,
"currency": "AUD",
"description": "Interest charge",
"status": "cancelled",
"occurredAt": "2026-02-18T14:20:17.339Z",
"createdAt": "2026-02-18T14:20:48.344Z"
}
],
"meta": {
"page": 90,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=90&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=91&limit=24",
"prev": "/api/v1/transactions?page=89&limit=24"
}
}