transactions
transactions
Page 31 of 105.
Overview
-
#721
#721
Monthly maintenance fee
-
#722
#722
Dispute resolved — credit
-
#723
#723
Account transfer
-
#724
#724
Return credit
-
#725
#725
ATM fee
-
#726
#726
Wire transfer fee
-
#727
#727
Cash withdrawal
-
#728
#728
Savings interest
-
#729
#729
ATM fee
-
#730
#730
Dispute resolved — credit
-
#731
#731
Bank transfer out
-
#732
#732
Loan interest payment
-
#733
#733
Interest charge
-
#734
#734
Account transfer
-
#735
#735
Savings interest
-
#736
#736
Interest charge
-
#737
#737
Return credit
-
#738
#738
Merchant refund
-
#739
#739
ATM fee
-
#740
#740
ATM fee
-
#741
#741
Subscription renewal
-
#742
#742
Loan interest payment
-
#743
#743
Dispute resolved — credit
-
#744
#744
ATM fee
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": 721,
"accountId": 494,
"kind": "fee",
"amount": -1025.78,
"currency": "CNY",
"description": "Monthly maintenance fee",
"status": "completed",
"occurredAt": "2024-11-17T09:36:12.696Z",
"createdAt": "2024-11-17T09:36:15.731Z"
},
{
"id": 722,
"accountId": 435,
"kind": "refund",
"amount": 9964.24,
"currency": "CAD",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2025-04-24T06:21:48.262Z",
"createdAt": "2025-04-24T06:22:34.390Z"
},
{
"id": 723,
"accountId": 58,
"kind": "transfer",
"amount": 1789.16,
"currency": "EUR",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-01-19T20:09:24.948Z",
"createdAt": "2025-01-19T20:10:01.629Z"
}
],
"meta": {
"page": 31,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=31&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=32&limit=24",
"prev": "/api/v1/transactions?page=30&limit=24"
}
}