transactions
transactions
Page 18 of 105.
Overview
-
#409
#409
Restaurant charge
-
#410
#410
Savings interest
-
#411
#411
Wire transfer received
-
#412
#412
Wire transfer sent
-
#413
#413
Investment transfer
-
#414
#414
Payroll deposit
-
#415
#415
Utility bill payment
-
#416
#416
Credit card interest
-
#417
#417
Foreign transaction fee
-
#418
#418
Credit card interest
-
#419
#419
Freelance payment received
-
#420
#420
Grocery store
-
#421
#421
Bank transfer in
-
#422
#422
Late payment fee
-
#423
#423
Restaurant charge
-
#424
#424
Purchase refund
-
#425
#425
Savings interest
-
#426
#426
Savings transfer
-
#427
#427
Dividend payment
-
#428
#428
ATM fee
-
#429
#429
Interest charge
-
#430
#430
Dispute resolved — credit
-
#431
#431
Credit card payment
-
#432
#432
ATM 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": 409,
"accountId": 62,
"kind": "payment",
"amount": -2228.84,
"currency": "CAD",
"description": "Restaurant charge",
"status": "pending",
"occurredAt": "2024-06-17T19:41:32.331Z",
"createdAt": "2024-06-17T19:42:19.880Z"
},
{
"id": 410,
"accountId": 299,
"kind": "interest",
"amount": 7768.95,
"currency": "EUR",
"description": "Savings interest",
"status": "failed",
"occurredAt": "2025-06-19T16:52:34.686Z",
"createdAt": "2025-06-19T16:52:42.530Z"
},
{
"id": 411,
"accountId": 395,
"kind": "deposit",
"amount": 8449.76,
"currency": "CNY",
"description": "Wire transfer received",
"status": "pending",
"occurredAt": "2025-06-24T08:54:41.233Z",
"createdAt": "2025-06-24T08:55:38.058Z"
}
],
"meta": {
"page": 18,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=18&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=19&limit=24",
"prev": "/api/v1/transactions?page=17&limit=24"
}
}