transactions
transactions
Page 96 of 105.
Overview
-
#2281
#2281
ATM fee
-
#2282
#2282
Cash withdrawal
-
#2283
#2283
Purchase refund
-
#2284
#2284
ATM fee
-
#2285
#2285
Check withdrawal
-
#2286
#2286
Loan payment
-
#2287
#2287
Wire transfer received
-
#2288
#2288
Dividend payment
-
#2289
#2289
Account transfer
-
#2290
#2290
Phone bill
-
#2291
#2291
Subscription refund
-
#2292
#2292
ATM withdrawal
-
#2293
#2293
Foreign transaction fee
-
#2294
#2294
ATM withdrawal
-
#2295
#2295
ATM withdrawal
-
#2296
#2296
Credit card interest
-
#2297
#2297
Loan interest payment
-
#2298
#2298
Merchant refund
-
#2299
#2299
Loan interest payment
-
#2300
#2300
Dividend payment
-
#2301
#2301
Loan interest payment
-
#2302
#2302
Investment transfer
-
#2303
#2303
Utility bill payment
-
#2304
#2304
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": 2281,
"accountId": 26,
"kind": "fee",
"amount": -3012.4,
"currency": "JPY",
"description": "ATM fee",
"status": "completed",
"occurredAt": "2025-01-01T00:28:14.854Z",
"createdAt": "2025-01-01T00:28:49.981Z"
},
{
"id": 2282,
"accountId": 9,
"kind": "withdrawal",
"amount": -670.93,
"currency": "EUR",
"description": "Cash withdrawal",
"status": "completed",
"occurredAt": "2026-01-15T13:32:21.096Z",
"createdAt": "2026-01-15T13:32:23.570Z"
},
{
"id": 2283,
"accountId": 356,
"kind": "refund",
"amount": 2435.26,
"currency": "CNY",
"description": "Purchase refund",
"status": "completed",
"occurredAt": "2025-03-31T05:07:57.439Z",
"createdAt": "2025-03-31T05:08:30.404Z"
}
],
"meta": {
"page": 96,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=96&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=97&limit=24",
"prev": "/api/v1/transactions?page=95&limit=24"
}
}