transactions
transactions
Page 88 of 105.
Overview
-
#2089
#2089
ATM withdrawal
-
#2090
#2090
ATM fee
-
#2091
#2091
Credit card payment
-
#2092
#2092
Purchase refund
-
#2093
#2093
Monthly maintenance fee
-
#2094
#2094
Credit card interest
-
#2095
#2095
Late payment fee
-
#2096
#2096
Freelance payment received
-
#2097
#2097
Loan interest payment
-
#2098
#2098
Bank transfer in
-
#2099
#2099
Loan interest payment
-
#2100
#2100
ATM fee
-
#2101
#2101
ATM fee
-
#2102
#2102
Credit card interest
-
#2103
#2103
Restaurant charge
-
#2104
#2104
Interest credit
-
#2105
#2105
Interest charge
-
#2106
#2106
Loan interest payment
-
#2107
#2107
Credit card interest
-
#2108
#2108
Credit card interest
-
#2109
#2109
Streaming service
-
#2110
#2110
Loan interest payment
-
#2111
#2111
Savings transfer
-
#2112
#2112
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": 2089,
"accountId": 61,
"kind": "withdrawal",
"amount": -571.31,
"currency": "EUR",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2026-04-28T10:37:26.112Z",
"createdAt": "2026-04-28T10:38:12.065Z"
},
{
"id": 2090,
"accountId": 148,
"kind": "fee",
"amount": -3821.56,
"currency": "CAD",
"description": "ATM fee",
"status": "cancelled",
"occurredAt": "2026-04-20T05:51:07.396Z",
"createdAt": "2026-04-20T05:51:24.152Z"
},
{
"id": 2091,
"accountId": 60,
"kind": "payment",
"amount": -1238.21,
"currency": "GBP",
"description": "Credit card payment",
"status": "pending",
"occurredAt": "2025-03-11T08:09:43.603Z",
"createdAt": "2025-03-11T08:10:06.356Z"
}
],
"meta": {
"page": 88,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=88&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=89&limit=24",
"prev": "/api/v1/transactions?page=87&limit=24"
}
}