transactions
transactions
Page 38 of 105.
Overview
-
#889
#889
Account service fee
-
#890
#890
Mortgage payment
-
#891
#891
Savings interest
-
#892
#892
Dispute resolved — credit
-
#893
#893
Foreign transaction fee
-
#894
#894
Dividend payment
-
#895
#895
Savings interest
-
#896
#896
Late payment fee
-
#897
#897
Dividend payment
-
#898
#898
Wire transfer sent
-
#899
#899
Overdraft fee
-
#900
#900
Refund credit
-
#901
#901
Loan interest payment
-
#902
#902
Wire transfer fee
-
#903
#903
Loan interest payment
-
#904
#904
Return credit
-
#905
#905
Loan interest payment
-
#906
#906
Savings interest
-
#907
#907
Purchase refund
-
#908
#908
Account transfer
-
#909
#909
Savings transfer
-
#910
#910
Purchase refund
-
#911
#911
Credit card interest
-
#912
#912
Payroll deposit
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": 889,
"accountId": 328,
"kind": "fee",
"amount": -2534.21,
"currency": "AUD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2025-04-02T11:40:30.776Z",
"createdAt": "2025-04-02T11:40:38.589Z"
},
{
"id": 890,
"accountId": 302,
"kind": "payment",
"amount": -4949.06,
"currency": "CHF",
"description": "Mortgage payment",
"status": "failed",
"occurredAt": "2025-06-07T15:02:29.852Z",
"createdAt": "2025-06-07T15:02:57.502Z"
},
{
"id": 891,
"accountId": 174,
"kind": "interest",
"amount": 8090.75,
"currency": "EUR",
"description": "Savings interest",
"status": "completed",
"occurredAt": "2024-12-14T03:18:31.126Z",
"createdAt": "2024-12-14T03:19:24.790Z"
}
],
"meta": {
"page": 38,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=38&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=39&limit=24",
"prev": "/api/v1/transactions?page=37&limit=24"
}
}