transactions
transactions
Page 7 of 105.
Overview
-
#145
#145
Rent payment
-
#146
#146
Interest charge
-
#147
#147
Interest charge
-
#148
#148
Refund credit
-
#149
#149
Interest credit
-
#150
#150
Internal transfer
-
#151
#151
Interest credit
-
#152
#152
Bank transfer out
-
#153
#153
Cash withdrawal
-
#154
#154
Bank transfer in
-
#155
#155
Monthly maintenance fee
-
#156
#156
Interest charge
-
#157
#157
Merchant refund
-
#158
#158
Monthly maintenance fee
-
#159
#159
Check withdrawal
-
#160
#160
Direct deposit
-
#161
#161
Late payment fee
-
#162
#162
ATM fee
-
#163
#163
Account transfer
-
#164
#164
Purchase refund
-
#165
#165
Return credit
-
#166
#166
Cash deposit
-
#167
#167
Payoff transfer
-
#168
#168
Direct 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": 145,
"accountId": 313,
"kind": "payment",
"amount": -4444.2,
"currency": "CNY",
"description": "Rent payment",
"status": "pending",
"occurredAt": "2025-06-10T22:44:33.278Z",
"createdAt": "2025-06-10T22:45:21.966Z"
},
{
"id": 146,
"accountId": 230,
"kind": "interest",
"amount": -51.78,
"currency": "AUD",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2024-07-19T05:36:52.985Z",
"createdAt": "2024-07-19T05:37:43.762Z"
},
{
"id": 147,
"accountId": 191,
"kind": "interest",
"amount": 3855.72,
"currency": "CHF",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2024-11-23T21:50:24.661Z",
"createdAt": "2024-11-23T21:50:50.876Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=7&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=8&limit=24",
"prev": "/api/v1/transactions?page=6&limit=24"
}
}