transactions
transactions
Page 75 of 105.
Overview
-
#1777
#1777
Bank transfer out
-
#1778
#1778
Cash withdrawal
-
#1779
#1779
Monthly maintenance fee
-
#1780
#1780
Payroll deposit
-
#1781
#1781
Return credit
-
#1782
#1782
Wire transfer sent
-
#1783
#1783
Credit card interest
-
#1784
#1784
Payoff transfer
-
#1785
#1785
Refund credit
-
#1786
#1786
Streaming service
-
#1787
#1787
Refund credit
-
#1788
#1788
Wire transfer fee
-
#1789
#1789
Investment transfer
-
#1790
#1790
Subscription refund
-
#1791
#1791
Account transfer
-
#1792
#1792
Insurance premium
-
#1793
#1793
Grocery store
-
#1794
#1794
Interest charge
-
#1795
#1795
Dividend payment
-
#1796
#1796
Savings interest
-
#1797
#1797
Bank transfer in
-
#1798
#1798
Online purchase
-
#1799
#1799
Overdraft fee
-
#1800
#1800
Credit card interest
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": 1777,
"accountId": 245,
"kind": "withdrawal",
"amount": -2966.04,
"currency": "CNY",
"description": "Bank transfer out",
"status": "completed",
"occurredAt": "2024-10-03T21:51:07.420Z",
"createdAt": "2024-10-03T21:51:17.363Z"
},
{
"id": 1778,
"accountId": 396,
"kind": "withdrawal",
"amount": -3801.71,
"currency": "USD",
"description": "Cash withdrawal",
"status": "pending",
"occurredAt": "2026-01-13T11:11:24.493Z",
"createdAt": "2026-01-13T11:11:41.822Z"
},
{
"id": 1779,
"accountId": 389,
"kind": "fee",
"amount": -512,
"currency": "USD",
"description": "Monthly maintenance fee",
"status": "completed",
"occurredAt": "2025-07-09T13:56:03.846Z",
"createdAt": "2025-07-09T13:56:55.532Z"
}
],
"meta": {
"page": 75,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=75&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=76&limit=24",
"prev": "/api/v1/transactions?page=74&limit=24"
}
}