transactions
transactions
Page 30 of 105.
Overview
-
#697
#697
Wire transfer sent
-
#698
#698
Account service fee
-
#699
#699
Dispute resolved — credit
-
#700
#700
Insurance premium
-
#701
#701
Wire transfer sent
-
#702
#702
Refund credit
-
#703
#703
Subscription refund
-
#704
#704
Bank transfer out
-
#705
#705
Loan interest payment
-
#706
#706
Dividend payment
-
#707
#707
Interest charge
-
#708
#708
Account transfer
-
#709
#709
Credit card interest
-
#710
#710
Loan interest payment
-
#711
#711
Phone bill
-
#712
#712
Interest credit
-
#713
#713
Check withdrawal
-
#714
#714
Grocery store
-
#715
#715
Merchant refund
-
#716
#716
Bank transfer out
-
#717
#717
Dividend payment
-
#718
#718
Payroll deposit
-
#719
#719
Check withdrawal
-
#720
#720
Wire transfer sent
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": 697,
"accountId": 294,
"kind": "withdrawal",
"amount": -2120.37,
"currency": "GBP",
"description": "Wire transfer sent",
"status": "pending",
"occurredAt": "2026-01-17T06:29:04.247Z",
"createdAt": "2026-01-17T06:29:12.487Z"
},
{
"id": 698,
"accountId": 64,
"kind": "fee",
"amount": -4750.37,
"currency": "AUD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2024-06-21T00:37:24.481Z",
"createdAt": "2024-06-21T00:37:58.189Z"
},
{
"id": 699,
"accountId": 292,
"kind": "refund",
"amount": 4346.73,
"currency": "CHF",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2025-03-10T08:34:37.702Z",
"createdAt": "2025-03-10T08:34:47.445Z"
}
],
"meta": {
"page": 30,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=30&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=31&limit=24",
"prev": "/api/v1/transactions?page=29&limit=24"
}
}