transactions
transactions
Page 25 of 105.
Overview
-
#577
#577
Wire transfer sent
-
#578
#578
Account service fee
-
#579
#579
Bank transfer out
-
#580
#580
Wire transfer fee
-
#581
#581
Cash withdrawal
-
#582
#582
Internal transfer
-
#583
#583
Interest credit
-
#584
#584
Interest credit
-
#585
#585
Insurance premium
-
#586
#586
Internal transfer
-
#587
#587
Investment transfer
-
#588
#588
Interest charge
-
#589
#589
Loan payment
-
#590
#590
Merchant refund
-
#591
#591
Account service fee
-
#592
#592
Mortgage payment
-
#593
#593
Wire transfer fee
-
#594
#594
Online purchase
-
#595
#595
Investment transfer
-
#596
#596
Dividend payment
-
#597
#597
Loan interest payment
-
#598
#598
Internal transfer
-
#599
#599
Interest credit
-
#600
#600
Interest charge
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": 577,
"accountId": 456,
"kind": "withdrawal",
"amount": -3276.88,
"currency": "AUD",
"description": "Wire transfer sent",
"status": "pending",
"occurredAt": "2025-01-19T20:46:05.979Z",
"createdAt": "2025-01-19T20:46:36.262Z"
},
{
"id": 578,
"accountId": 440,
"kind": "fee",
"amount": -3676.49,
"currency": "USD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2025-04-03T19:27:31.722Z",
"createdAt": "2025-04-03T19:28:13.207Z"
},
{
"id": 579,
"accountId": 272,
"kind": "withdrawal",
"amount": -1741.41,
"currency": "USD",
"description": "Bank transfer out",
"status": "pending",
"occurredAt": "2024-08-30T17:03:09.291Z",
"createdAt": "2024-08-30T17:03:43.815Z"
}
],
"meta": {
"page": 25,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=25&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=26&limit=24",
"prev": "/api/v1/transactions?page=24&limit=24"
}
}