transactions
transactions
Page 60 of 105.
Overview
-
#1417
#1417
Late payment fee
-
#1418
#1418
Savings transfer
-
#1419
#1419
Loan interest payment
-
#1420
#1420
ATM withdrawal
-
#1421
#1421
Interest credit
-
#1422
#1422
Payoff transfer
-
#1423
#1423
Account service fee
-
#1424
#1424
Subscription refund
-
#1425
#1425
Credit card payment
-
#1426
#1426
Streaming service
-
#1427
#1427
Savings transfer
-
#1428
#1428
Utility bill payment
-
#1429
#1429
Internal transfer
-
#1430
#1430
Utility bill payment
-
#1431
#1431
Check withdrawal
-
#1432
#1432
Purchase refund
-
#1433
#1433
Return credit
-
#1434
#1434
Insurance premium
-
#1435
#1435
Return credit
-
#1436
#1436
Internal transfer
-
#1437
#1437
Internal transfer
-
#1438
#1438
Interest charge
-
#1439
#1439
ATM withdrawal
-
#1440
#1440
Streaming service
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": 1417,
"accountId": 117,
"kind": "fee",
"amount": -3771.41,
"currency": "EUR",
"description": "Late payment fee",
"status": "completed",
"occurredAt": "2025-07-31T19:25:32.815Z",
"createdAt": "2025-07-31T19:25:49.696Z"
},
{
"id": 1418,
"accountId": 223,
"kind": "transfer",
"amount": 2660.82,
"currency": "CNY",
"description": "Savings transfer",
"status": "pending",
"occurredAt": "2025-02-22T03:30:32.998Z",
"createdAt": "2025-02-22T03:31:12.534Z"
},
{
"id": 1419,
"accountId": 111,
"kind": "interest",
"amount": 8480.9,
"currency": "JPY",
"description": "Loan interest payment",
"status": "failed",
"occurredAt": "2025-06-28T07:50:24.213Z",
"createdAt": "2025-06-28T07:50:52.524Z"
}
],
"meta": {
"page": 60,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=60&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=61&limit=24",
"prev": "/api/v1/transactions?page=59&limit=24"
}
}