transactions
transactions
Page 101 of 105.
Overview
-
#2401
#2401
Purchase refund
-
#2402
#2402
Wire transfer sent
-
#2403
#2403
Merchant refund
-
#2404
#2404
Wire transfer sent
-
#2405
#2405
Utility bill payment
-
#2406
#2406
Dispute resolved — credit
-
#2407
#2407
Bank transfer out
-
#2408
#2408
ATM fee
-
#2409
#2409
Subscription refund
-
#2410
#2410
Wire transfer received
-
#2411
#2411
Loan interest payment
-
#2412
#2412
Interest charge
-
#2413
#2413
Return credit
-
#2414
#2414
Payoff transfer
-
#2415
#2415
ATM fee
-
#2416
#2416
Mortgage payment
-
#2417
#2417
Purchase refund
-
#2418
#2418
Loan payment
-
#2419
#2419
ATM withdrawal
-
#2420
#2420
Subscription renewal
-
#2421
#2421
Check withdrawal
-
#2422
#2422
Rent payment
-
#2423
#2423
ATM fee
-
#2424
#2424
Purchase refund
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": 2401,
"accountId": 92,
"kind": "refund",
"amount": 699.28,
"currency": "CHF",
"description": "Purchase refund",
"status": "completed",
"occurredAt": "2026-04-10T01:29:07.811Z",
"createdAt": "2026-04-10T01:29:49.012Z"
},
{
"id": 2402,
"accountId": 103,
"kind": "withdrawal",
"amount": -4534.24,
"currency": "CHF",
"description": "Wire transfer sent",
"status": "completed",
"occurredAt": "2024-09-10T21:30:55.037Z",
"createdAt": "2024-09-10T21:31:30.408Z"
},
{
"id": 2403,
"accountId": 418,
"kind": "refund",
"amount": 2870.19,
"currency": "JPY",
"description": "Merchant refund",
"status": "completed",
"occurredAt": "2025-06-26T09:21:11.881Z",
"createdAt": "2025-06-26T09:22:09.467Z"
}
],
"meta": {
"page": 101,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=101&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=102&limit=24",
"prev": "/api/v1/transactions?page=100&limit=24"
}
}