transactions
transactions
Page 50 of 105.
Overview
-
#1177
#1177
Interest credit
-
#1178
#1178
Account transfer
-
#1179
#1179
Merchant refund
-
#1180
#1180
Dispute resolved — credit
-
#1181
#1181
Interest charge
-
#1182
#1182
Subscription refund
-
#1183
#1183
Direct deposit
-
#1184
#1184
Bank transfer out
-
#1185
#1185
Subscription refund
-
#1186
#1186
Merchant refund
-
#1187
#1187
Wire transfer received
-
#1188
#1188
Late payment fee
-
#1189
#1189
Check withdrawal
-
#1190
#1190
Credit card interest
-
#1191
#1191
Account service fee
-
#1192
#1192
Savings transfer
-
#1193
#1193
Cash withdrawal
-
#1194
#1194
ATM fee
-
#1195
#1195
Dispute resolved — credit
-
#1196
#1196
Savings transfer
-
#1197
#1197
Wire transfer fee
-
#1198
#1198
Account transfer
-
#1199
#1199
Credit card interest
-
#1200
#1200
Payoff 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": 1177,
"accountId": 190,
"kind": "deposit",
"amount": 4424.71,
"currency": "AUD",
"description": "Interest credit",
"status": "completed",
"occurredAt": "2026-04-29T06:38:09.969Z",
"createdAt": "2026-04-29T06:38:23.790Z"
},
{
"id": 1178,
"accountId": 210,
"kind": "transfer",
"amount": -375.27,
"currency": "CAD",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-12-20T13:06:47.916Z",
"createdAt": "2025-12-20T13:07:16.459Z"
},
{
"id": 1179,
"accountId": 210,
"kind": "refund",
"amount": 2110.95,
"currency": "CAD",
"description": "Merchant refund",
"status": "completed",
"occurredAt": "2025-04-21T23:06:26.523Z",
"createdAt": "2025-04-21T23:06:58.907Z"
}
],
"meta": {
"page": 50,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=50&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=51&limit=24",
"prev": "/api/v1/transactions?page=49&limit=24"
}
}