transactions
transactions
Page 66 of 105.
Overview
-
#1561
#1561
Dividend payment
-
#1562
#1562
Payoff transfer
-
#1563
#1563
Rent payment
-
#1564
#1564
Credit card interest
-
#1565
#1565
Savings interest
-
#1566
#1566
Payoff transfer
-
#1567
#1567
Wire transfer fee
-
#1568
#1568
Account transfer
-
#1569
#1569
ATM withdrawal
-
#1570
#1570
Bank transfer out
-
#1571
#1571
Interest charge
-
#1572
#1572
Loan payment
-
#1573
#1573
Purchase refund
-
#1574
#1574
Online purchase
-
#1575
#1575
Interest charge
-
#1576
#1576
Direct deposit
-
#1577
#1577
Account transfer
-
#1578
#1578
Bank transfer in
-
#1579
#1579
Bank transfer out
-
#1580
#1580
Bank transfer out
-
#1581
#1581
ATM fee
-
#1582
#1582
Credit card payment
-
#1583
#1583
Return credit
-
#1584
#1584
Streaming service
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": 1561,
"accountId": 71,
"kind": "deposit",
"amount": 9404.44,
"currency": "CNY",
"description": "Dividend payment",
"status": "completed",
"occurredAt": "2025-06-14T15:05:36.029Z",
"createdAt": "2025-06-14T15:05:46.410Z"
},
{
"id": 1562,
"accountId": 101,
"kind": "transfer",
"amount": -4177.1,
"currency": "CNY",
"description": "Payoff transfer",
"status": "completed",
"occurredAt": "2026-03-17T07:15:14.001Z",
"createdAt": "2026-03-17T07:15:59.589Z"
},
{
"id": 1563,
"accountId": 303,
"kind": "payment",
"amount": -1892.78,
"currency": "CNY",
"description": "Rent payment",
"status": "pending",
"occurredAt": "2025-05-22T07:59:25.783Z",
"createdAt": "2025-05-22T08:00:18.118Z"
}
],
"meta": {
"page": 66,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=66&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=67&limit=24",
"prev": "/api/v1/transactions?page=65&limit=24"
}
}