transactions
transactions
Page 69 of 105.
Overview
-
#1633
#1633
ATM withdrawal
-
#1634
#1634
Loan interest payment
-
#1635
#1635
ATM withdrawal
-
#1636
#1636
Overdraft fee
-
#1637
#1637
Bank transfer in
-
#1638
#1638
Subscription renewal
-
#1639
#1639
ATM withdrawal
-
#1640
#1640
Savings transfer
-
#1641
#1641
Refund credit
-
#1642
#1642
Cash deposit
-
#1643
#1643
Check withdrawal
-
#1644
#1644
Dispute resolved — credit
-
#1645
#1645
Return credit
-
#1646
#1646
ATM withdrawal
-
#1647
#1647
Utility bill payment
-
#1648
#1648
Wire transfer sent
-
#1649
#1649
Internal transfer
-
#1650
#1650
Bank transfer out
-
#1651
#1651
Online purchase
-
#1652
#1652
Cash deposit
-
#1653
#1653
Return credit
-
#1654
#1654
Internal transfer
-
#1655
#1655
Investment transfer
-
#1656
#1656
Account transfer
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": 1633,
"accountId": 223,
"kind": "withdrawal",
"amount": -515.42,
"currency": "CNY",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2024-06-06T22:47:37.291Z",
"createdAt": "2024-06-06T22:48:28.395Z"
},
{
"id": 1634,
"accountId": 34,
"kind": "interest",
"amount": -244.89,
"currency": "CHF",
"description": "Loan interest payment",
"status": "failed",
"occurredAt": "2025-05-15T23:22:47.452Z",
"createdAt": "2025-05-15T23:23:31.820Z"
},
{
"id": 1635,
"accountId": 133,
"kind": "withdrawal",
"amount": -4314.62,
"currency": "JPY",
"description": "ATM withdrawal",
"status": "failed",
"occurredAt": "2026-04-17T04:49:51.257Z",
"createdAt": "2026-04-17T04:49:58.915Z"
}
],
"meta": {
"page": 69,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=69&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=70&limit=24",
"prev": "/api/v1/transactions?page=68&limit=24"
}
}