transactions
transactions
Page 57 of 105.
Overview
-
#1345
#1345
ATM withdrawal
-
#1346
#1346
Account service fee
-
#1347
#1347
Return credit
-
#1348
#1348
Cash deposit
-
#1349
#1349
Internal transfer
-
#1350
#1350
Check withdrawal
-
#1351
#1351
Streaming service
-
#1352
#1352
Foreign transaction fee
-
#1353
#1353
Insurance premium
-
#1354
#1354
Rent payment
-
#1355
#1355
Refund credit
-
#1356
#1356
Foreign transaction fee
-
#1357
#1357
Subscription renewal
-
#1358
#1358
Payoff transfer
-
#1359
#1359
Credit card interest
-
#1360
#1360
Account transfer
-
#1361
#1361
Loan interest payment
-
#1362
#1362
Payroll deposit
-
#1363
#1363
Account transfer
-
#1364
#1364
Interest charge
-
#1365
#1365
Merchant refund
-
#1366
#1366
Check withdrawal
-
#1367
#1367
Online purchase
-
#1368
#1368
Bank transfer out
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": 1345,
"accountId": 460,
"kind": "withdrawal",
"amount": -3922.79,
"currency": "CAD",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2025-08-20T08:43:41.322Z",
"createdAt": "2025-08-20T08:44:28.731Z"
},
{
"id": 1346,
"accountId": 383,
"kind": "fee",
"amount": -2936.93,
"currency": "AUD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2025-04-12T23:20:32.566Z",
"createdAt": "2025-04-12T23:20:48.272Z"
},
{
"id": 1347,
"accountId": 460,
"kind": "refund",
"amount": 7130.63,
"currency": "CAD",
"description": "Return credit",
"status": "completed",
"occurredAt": "2024-06-07T07:34:07.792Z",
"createdAt": "2024-06-07T07:34:58.135Z"
}
],
"meta": {
"page": 57,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=57&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=58&limit=24",
"prev": "/api/v1/transactions?page=56&limit=24"
}
}