transactions
transactions
Page 16 of 105.
Overview
-
#361
#361
Investment transfer
-
#362
#362
Internal transfer
-
#363
#363
Online purchase
-
#364
#364
Payroll deposit
-
#365
#365
Cash withdrawal
-
#366
#366
Account transfer
-
#367
#367
Interest charge
-
#368
#368
Wire transfer sent
-
#369
#369
Monthly maintenance fee
-
#370
#370
ATM fee
-
#371
#371
Refund credit
-
#372
#372
Cash withdrawal
-
#373
#373
Interest charge
-
#374
#374
Phone bill
-
#375
#375
Loan interest payment
-
#376
#376
Payoff transfer
-
#377
#377
ATM withdrawal
-
#378
#378
Return credit
-
#379
#379
Wire transfer sent
-
#380
#380
Interest charge
-
#381
#381
Internal transfer
-
#382
#382
Freelance payment received
-
#383
#383
Interest charge
-
#384
#384
Merchant refund
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": 361,
"accountId": 456,
"kind": "transfer",
"amount": -3111.23,
"currency": "AUD",
"description": "Investment transfer",
"status": "completed",
"occurredAt": "2025-08-10T23:15:55.968Z",
"createdAt": "2025-08-10T23:16:19.864Z"
},
{
"id": 362,
"accountId": 224,
"kind": "transfer",
"amount": -3588.62,
"currency": "GBP",
"description": "Internal transfer",
"status": "completed",
"occurredAt": "2024-07-12T04:09:30.312Z",
"createdAt": "2024-07-12T04:09:36.482Z"
},
{
"id": 363,
"accountId": 400,
"kind": "payment",
"amount": -2603.59,
"currency": "CNY",
"description": "Online purchase",
"status": "completed",
"occurredAt": "2024-07-29T20:49:07.249Z",
"createdAt": "2024-07-29T20:49:29.662Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=16&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=17&limit=24",
"prev": "/api/v1/transactions?page=15&limit=24"
}
}