transactions
transactions
Page 61 of 105.
Overview
-
#1441
#1441
Bank transfer out
-
#1442
#1442
Dividend payment
-
#1443
#1443
Interest credit
-
#1444
#1444
Dispute resolved — credit
-
#1445
#1445
Refund credit
-
#1446
#1446
Return credit
-
#1447
#1447
Bank transfer out
-
#1448
#1448
Payoff transfer
-
#1449
#1449
Freelance payment received
-
#1450
#1450
Credit card interest
-
#1451
#1451
Late payment fee
-
#1452
#1452
Return credit
-
#1453
#1453
Return credit
-
#1454
#1454
Credit card payment
-
#1455
#1455
Loan interest payment
-
#1456
#1456
Interest credit
-
#1457
#1457
Credit card interest
-
#1458
#1458
Freelance payment received
-
#1459
#1459
Interest charge
-
#1460
#1460
Wire transfer received
-
#1461
#1461
Check withdrawal
-
#1462
#1462
Savings interest
-
#1463
#1463
Merchant refund
-
#1464
#1464
Payroll deposit
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": 1441,
"accountId": 267,
"kind": "withdrawal",
"amount": -1778.96,
"currency": "EUR",
"description": "Bank transfer out",
"status": "completed",
"occurredAt": "2025-07-22T16:18:58.334Z",
"createdAt": "2025-07-22T16:19:28.973Z"
},
{
"id": 1442,
"accountId": 191,
"kind": "deposit",
"amount": 3815.48,
"currency": "CHF",
"description": "Dividend payment",
"status": "completed",
"occurredAt": "2025-11-06T02:31:45.239Z",
"createdAt": "2025-11-06T02:31:58.305Z"
},
{
"id": 1443,
"accountId": 364,
"kind": "deposit",
"amount": 9792.24,
"currency": "GBP",
"description": "Interest credit",
"status": "completed",
"occurredAt": "2025-11-12T21:45:55.274Z",
"createdAt": "2025-11-12T21:46:20.924Z"
}
],
"meta": {
"page": 61,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=61&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=62&limit=24",
"prev": "/api/v1/transactions?page=60&limit=24"
}
}