transactions
transactions
Page 86 of 105.
Overview
-
#2041
#2041
Online purchase
-
#2042
#2042
Merchant refund
-
#2043
#2043
Phone bill
-
#2044
#2044
Rent payment
-
#2045
#2045
Loan interest payment
-
#2046
#2046
Online purchase
-
#2047
#2047
Dispute resolved — credit
-
#2048
#2048
Savings interest
-
#2049
#2049
Late payment fee
-
#2050
#2050
Savings interest
-
#2051
#2051
Investment transfer
-
#2052
#2052
Return credit
-
#2053
#2053
ATM withdrawal
-
#2054
#2054
Investment transfer
-
#2055
#2055
Purchase refund
-
#2056
#2056
Cash deposit
-
#2057
#2057
Interest charge
-
#2058
#2058
Loan payment
-
#2059
#2059
Refund credit
-
#2060
#2060
Wire transfer sent
-
#2061
#2061
Subscription renewal
-
#2062
#2062
Savings interest
-
#2063
#2063
Internal transfer
-
#2064
#2064
Wire transfer received
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": 2041,
"accountId": 301,
"kind": "payment",
"amount": -2036.09,
"currency": "EUR",
"description": "Online purchase",
"status": "failed",
"occurredAt": "2026-01-30T13:37:09.737Z",
"createdAt": "2026-01-30T13:37:51.148Z"
},
{
"id": 2042,
"accountId": 403,
"kind": "refund",
"amount": 7832.12,
"currency": "AUD",
"description": "Merchant refund",
"status": "completed",
"occurredAt": "2024-06-04T03:44:13.532Z",
"createdAt": "2024-06-04T03:45:03.868Z"
},
{
"id": 2043,
"accountId": 410,
"kind": "payment",
"amount": -1783.15,
"currency": "GBP",
"description": "Phone bill",
"status": "completed",
"occurredAt": "2025-12-15T05:45:52.862Z",
"createdAt": "2025-12-15T05:46:32.886Z"
}
],
"meta": {
"page": 86,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=86&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=87&limit=24",
"prev": "/api/v1/transactions?page=85&limit=24"
}
}