transactions
transactions
Page 55 of 105.
Overview
-
#1297
#1297
Payroll deposit
-
#1298
#1298
Savings interest
-
#1299
#1299
Internal transfer
-
#1300
#1300
Dispute resolved — credit
-
#1301
#1301
Return credit
-
#1302
#1302
Wire transfer received
-
#1303
#1303
Interest credit
-
#1304
#1304
Foreign transaction fee
-
#1305
#1305
Subscription refund
-
#1306
#1306
Wire transfer sent
-
#1307
#1307
Savings interest
-
#1308
#1308
Check withdrawal
-
#1309
#1309
Rent payment
-
#1310
#1310
Loan interest payment
-
#1311
#1311
Refund credit
-
#1312
#1312
Payroll deposit
-
#1313
#1313
Credit card payment
-
#1314
#1314
Account service fee
-
#1315
#1315
Phone bill
-
#1316
#1316
Streaming service
-
#1317
#1317
Direct deposit
-
#1318
#1318
Monthly maintenance fee
-
#1319
#1319
Subscription renewal
-
#1320
#1320
Internal 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": 1297,
"accountId": 439,
"kind": "deposit",
"amount": 5818.16,
"currency": "CAD",
"description": "Payroll deposit",
"status": "cancelled",
"occurredAt": "2025-04-08T12:59:13.963Z",
"createdAt": "2025-04-08T12:59:47.534Z"
},
{
"id": 1298,
"accountId": 202,
"kind": "interest",
"amount": 4795.85,
"currency": "USD",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2026-04-19T12:54:45.333Z",
"createdAt": "2026-04-19T12:55:16.819Z"
},
{
"id": 1299,
"accountId": 12,
"kind": "transfer",
"amount": 1667.28,
"currency": "CAD",
"description": "Internal transfer",
"status": "pending",
"occurredAt": "2024-12-30T09:05:19.859Z",
"createdAt": "2024-12-30T09:05:45.557Z"
}
],
"meta": {
"page": 55,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=55&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=56&limit=24",
"prev": "/api/v1/transactions?page=54&limit=24"
}
}