transactions
transactions
Page 72 of 105.
Overview
-
#1705
#1705
Wire transfer fee
-
#1706
#1706
Cash withdrawal
-
#1707
#1707
Merchant refund
-
#1708
#1708
Merchant refund
-
#1709
#1709
Payroll deposit
-
#1710
#1710
Grocery store
-
#1711
#1711
Check withdrawal
-
#1712
#1712
Payroll deposit
-
#1713
#1713
Overdraft fee
-
#1714
#1714
Overdraft fee
-
#1715
#1715
Interest credit
-
#1716
#1716
Account transfer
-
#1717
#1717
Bank transfer out
-
#1718
#1718
Phone bill
-
#1719
#1719
ATM fee
-
#1720
#1720
Payroll deposit
-
#1721
#1721
Cash withdrawal
-
#1722
#1722
ATM withdrawal
-
#1723
#1723
Credit card interest
-
#1724
#1724
Insurance premium
-
#1725
#1725
Overdraft fee
-
#1726
#1726
Interest charge
-
#1727
#1727
ATM withdrawal
-
#1728
#1728
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": 1705,
"accountId": 266,
"kind": "fee",
"amount": -387.63,
"currency": "CHF",
"description": "Wire transfer fee",
"status": "completed",
"occurredAt": "2025-03-24T02:14:34.118Z",
"createdAt": "2025-03-24T02:15:04.987Z"
},
{
"id": 1706,
"accountId": 318,
"kind": "withdrawal",
"amount": -3919.38,
"currency": "JPY",
"description": "Cash withdrawal",
"status": "pending",
"occurredAt": "2024-06-06T19:09:20.385Z",
"createdAt": "2024-06-06T19:09:40.213Z"
},
{
"id": 1707,
"accountId": 363,
"kind": "refund",
"amount": 1833.23,
"currency": "CNY",
"description": "Merchant refund",
"status": "completed",
"occurredAt": "2025-05-20T18:56:57.580Z",
"createdAt": "2025-05-20T18:57:42.482Z"
}
],
"meta": {
"page": 72,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=72&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=73&limit=24",
"prev": "/api/v1/transactions?page=71&limit=24"
}
}