transactions
transactions
Page 49 of 105.
Overview
-
#1153
#1153
Freelance payment received
-
#1154
#1154
Wire transfer fee
-
#1155
#1155
Credit card interest
-
#1156
#1156
Loan interest payment
-
#1157
#1157
Subscription renewal
-
#1158
#1158
Bank transfer in
-
#1159
#1159
Loan interest payment
-
#1160
#1160
ATM withdrawal
-
#1161
#1161
Subscription refund
-
#1162
#1162
Bank transfer out
-
#1163
#1163
Bank transfer out
-
#1164
#1164
Merchant refund
-
#1165
#1165
Subscription refund
-
#1166
#1166
Interest credit
-
#1167
#1167
ATM withdrawal
-
#1168
#1168
Interest charge
-
#1169
#1169
Bank transfer in
-
#1170
#1170
Wire transfer received
-
#1171
#1171
Account transfer
-
#1172
#1172
Credit card interest
-
#1173
#1173
Purchase refund
-
#1174
#1174
Mortgage payment
-
#1175
#1175
Monthly maintenance fee
-
#1176
#1176
Overdraft fee
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": 1153,
"accountId": 72,
"kind": "deposit",
"amount": 9818.2,
"currency": "GBP",
"description": "Freelance payment received",
"status": "failed",
"occurredAt": "2026-03-21T10:29:33.865Z",
"createdAt": "2026-03-21T10:30:09.951Z"
},
{
"id": 1154,
"accountId": 473,
"kind": "fee",
"amount": -4582.34,
"currency": "CAD",
"description": "Wire transfer fee",
"status": "completed",
"occurredAt": "2025-04-01T18:00:13.007Z",
"createdAt": "2025-04-01T18:00:34.782Z"
},
{
"id": 1155,
"accountId": 268,
"kind": "interest",
"amount": 667.03,
"currency": "AUD",
"description": "Credit card interest",
"status": "completed",
"occurredAt": "2026-04-26T20:33:46.886Z",
"createdAt": "2026-04-26T20:34:14.412Z"
}
],
"meta": {
"page": 49,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=49&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=50&limit=24",
"prev": "/api/v1/transactions?page=48&limit=24"
}
}