transactions
transactions
Page 47 of 105.
Overview
-
#1105
#1105
Loan payment
-
#1106
#1106
Savings interest
-
#1107
#1107
Online purchase
-
#1108
#1108
Merchant refund
-
#1109
#1109
ATM withdrawal
-
#1110
#1110
Wire transfer sent
-
#1111
#1111
Credit card interest
-
#1112
#1112
Dispute resolved — credit
-
#1113
#1113
Monthly maintenance fee
-
#1114
#1114
Account transfer
-
#1115
#1115
Grocery store
-
#1116
#1116
Wire transfer fee
-
#1117
#1117
Interest credit
-
#1118
#1118
Check withdrawal
-
#1119
#1119
Bank transfer out
-
#1120
#1120
Subscription refund
-
#1121
#1121
Credit card interest
-
#1122
#1122
Cash withdrawal
-
#1123
#1123
Loan payment
-
#1124
#1124
Wire transfer fee
-
#1125
#1125
Savings interest
-
#1126
#1126
Utility bill payment
-
#1127
#1127
Investment transfer
-
#1128
#1128
Merchant refund
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": 1105,
"accountId": 232,
"kind": "payment",
"amount": -4249.58,
"currency": "EUR",
"description": "Loan payment",
"status": "completed",
"occurredAt": "2025-10-14T05:25:11.236Z",
"createdAt": "2025-10-14T05:25:34.291Z"
},
{
"id": 1106,
"accountId": 371,
"kind": "interest",
"amount": 3211.42,
"currency": "JPY",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2025-10-14T12:09:19.000Z",
"createdAt": "2025-10-14T12:09:53.523Z"
},
{
"id": 1107,
"accountId": 303,
"kind": "payment",
"amount": -4836,
"currency": "CNY",
"description": "Online purchase",
"status": "completed",
"occurredAt": "2025-12-03T22:55:30.738Z",
"createdAt": "2025-12-03T22:55:52.701Z"
}
],
"meta": {
"page": 47,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=47&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=48&limit=24",
"prev": "/api/v1/transactions?page=46&limit=24"
}
}