transactions
transactions
Page 3 of 105.
Overview
-
#49
#49
Account transfer
-
#50
#50
Grocery store
-
#51
#51
Loan interest payment
-
#52
#52
Monthly maintenance fee
-
#53
#53
Direct deposit
-
#54
#54
Check withdrawal
-
#55
#55
Loan interest payment
-
#56
#56
Dispute resolved — credit
-
#57
#57
Utility bill payment
-
#58
#58
Overdraft fee
-
#59
#59
Credit card payment
-
#60
#60
Return credit
-
#61
#61
Savings transfer
-
#62
#62
Subscription refund
-
#63
#63
Freelance payment received
-
#64
#64
Bank transfer out
-
#65
#65
Bank transfer out
-
#66
#66
Investment transfer
-
#67
#67
Subscription renewal
-
#68
#68
Wire transfer fee
-
#69
#69
Wire transfer sent
-
#70
#70
Loan interest payment
-
#71
#71
Dividend payment
-
#72
#72
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": 49,
"accountId": 394,
"kind": "transfer",
"amount": 2095.46,
"currency": "CHF",
"description": "Account transfer",
"status": "pending",
"occurredAt": "2025-07-05T16:44:17.670Z",
"createdAt": "2025-07-05T16:44:31.602Z"
},
{
"id": 50,
"accountId": 261,
"kind": "payment",
"amount": -2216.13,
"currency": "CNY",
"description": "Grocery store",
"status": "completed",
"occurredAt": "2026-02-07T14:28:57.039Z",
"createdAt": "2026-02-07T14:29:46.662Z"
},
{
"id": 51,
"accountId": 357,
"kind": "interest",
"amount": 4814.16,
"currency": "AUD",
"description": "Loan interest payment",
"status": "pending",
"occurredAt": "2024-12-28T20:24:32.929Z",
"createdAt": "2024-12-28T20:24:56.579Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=3&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=4&limit=24",
"prev": "/api/v1/transactions?page=2&limit=24"
}
}