transactions
transactions
Page 62 of 105.
Overview
-
#1465
#1465
Interest charge
-
#1466
#1466
Credit card interest
-
#1467
#1467
Loan interest payment
-
#1468
#1468
Dividend payment
-
#1469
#1469
Savings interest
-
#1470
#1470
Restaurant charge
-
#1471
#1471
Check withdrawal
-
#1472
#1472
Savings interest
-
#1473
#1473
Purchase refund
-
#1474
#1474
Streaming service
-
#1475
#1475
Interest charge
-
#1476
#1476
Credit card interest
-
#1477
#1477
Wire transfer sent
-
#1478
#1478
Payoff transfer
-
#1479
#1479
Merchant refund
-
#1480
#1480
Bank transfer in
-
#1481
#1481
Investment transfer
-
#1482
#1482
Account transfer
-
#1483
#1483
Cash deposit
-
#1484
#1484
Payroll deposit
-
#1485
#1485
Insurance premium
-
#1486
#1486
Interest charge
-
#1487
#1487
Check withdrawal
-
#1488
#1488
Interest charge
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": 1465,
"accountId": 395,
"kind": "interest",
"amount": -489.58,
"currency": "CNY",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2026-02-07T19:29:00.860Z",
"createdAt": "2026-02-07T19:29:48.868Z"
},
{
"id": 1466,
"accountId": 100,
"kind": "interest",
"amount": -102.76,
"currency": "JPY",
"description": "Credit card interest",
"status": "completed",
"occurredAt": "2026-05-10T03:36:14.141Z",
"createdAt": "2026-05-10T03:36:41.529Z"
},
{
"id": 1467,
"accountId": 427,
"kind": "interest",
"amount": 126.73,
"currency": "USD",
"description": "Loan interest payment",
"status": "completed",
"occurredAt": "2024-12-04T09:32:34.274Z",
"createdAt": "2024-12-04T09:32:51.216Z"
}
],
"meta": {
"page": 62,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=62&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=63&limit=24",
"prev": "/api/v1/transactions?page=61&limit=24"
}
}