transactions
transactions
Page 19 of 105.
Overview
-
#433
#433
Account transfer
-
#434
#434
Merchant refund
-
#435
#435
Internal transfer
-
#436
#436
Check withdrawal
-
#437
#437
ATM withdrawal
-
#438
#438
Investment transfer
-
#439
#439
Monthly maintenance fee
-
#440
#440
Return credit
-
#441
#441
Dispute resolved — credit
-
#442
#442
Interest credit
-
#443
#443
Interest charge
-
#444
#444
Subscription renewal
-
#445
#445
Payoff transfer
-
#446
#446
Interest credit
-
#447
#447
Savings transfer
-
#448
#448
Foreign transaction fee
-
#449
#449
Payoff transfer
-
#450
#450
Bank transfer in
-
#451
#451
Wire transfer sent
-
#452
#452
Wire transfer sent
-
#453
#453
Loan payment
-
#454
#454
Return credit
-
#455
#455
Payroll deposit
-
#456
#456
Interest credit
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": 433,
"accountId": 172,
"kind": "transfer",
"amount": 1228.39,
"currency": "EUR",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-10-20T23:33:34.712Z",
"createdAt": "2025-10-20T23:34:19.547Z"
},
{
"id": 434,
"accountId": 116,
"kind": "refund",
"amount": 7014.93,
"currency": "AUD",
"description": "Merchant refund",
"status": "pending",
"occurredAt": "2025-03-25T17:34:51.675Z",
"createdAt": "2025-03-25T17:35:01.174Z"
},
{
"id": 435,
"accountId": 71,
"kind": "transfer",
"amount": 2848.06,
"currency": "CNY",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2025-10-01T07:35:03.342Z",
"createdAt": "2025-10-01T07:35:25.273Z"
}
],
"meta": {
"page": 19,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=19&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=20&limit=24",
"prev": "/api/v1/transactions?page=18&limit=24"
}
}