transactions
transactions
Page 23 of 105.
Overview
-
#529
#529
Return credit
-
#530
#530
Return credit
-
#531
#531
Account transfer
-
#532
#532
Online purchase
-
#533
#533
Loan interest payment
-
#534
#534
Payroll deposit
-
#535
#535
Account service fee
-
#536
#536
Internal transfer
-
#537
#537
Wire transfer fee
-
#538
#538
Dividend payment
-
#539
#539
Dividend payment
-
#540
#540
Restaurant charge
-
#541
#541
Merchant refund
-
#542
#542
Late payment fee
-
#543
#543
Phone bill
-
#544
#544
ATM withdrawal
-
#545
#545
Wire transfer sent
-
#546
#546
Refund credit
-
#547
#547
Internal transfer
-
#548
#548
Wire transfer sent
-
#549
#549
Subscription refund
-
#550
#550
Monthly maintenance fee
-
#551
#551
Loan interest payment
-
#552
#552
Cash withdrawal
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": 529,
"accountId": 170,
"kind": "refund",
"amount": 7052.65,
"currency": "EUR",
"description": "Return credit",
"status": "failed",
"occurredAt": "2024-06-17T10:10:44.487Z",
"createdAt": "2024-06-17T10:11:34.752Z"
},
{
"id": 530,
"accountId": 387,
"kind": "refund",
"amount": 6738.9,
"currency": "CHF",
"description": "Return credit",
"status": "completed",
"occurredAt": "2025-02-24T08:37:10.988Z",
"createdAt": "2025-02-24T08:38:03.775Z"
},
{
"id": 531,
"accountId": 87,
"kind": "transfer",
"amount": 3232.7,
"currency": "CAD",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-11-18T14:45:22.247Z",
"createdAt": "2025-11-18T14:46:12.157Z"
}
],
"meta": {
"page": 23,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=23&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=24&limit=24",
"prev": "/api/v1/transactions?page=22&limit=24"
}
}