transactions
transactions
Page 91 of 105.
Overview
-
#2161
#2161
Bank transfer in
-
#2162
#2162
Overdraft fee
-
#2163
#2163
Dividend payment
-
#2164
#2164
Check withdrawal
-
#2165
#2165
Credit card interest
-
#2166
#2166
Dispute resolved — credit
-
#2167
#2167
Wire transfer received
-
#2168
#2168
Overdraft fee
-
#2169
#2169
Freelance payment received
-
#2170
#2170
Rent payment
-
#2171
#2171
Interest charge
-
#2172
#2172
Direct deposit
-
#2173
#2173
Dispute resolved — credit
-
#2174
#2174
Direct deposit
-
#2175
#2175
Return credit
-
#2176
#2176
Internal transfer
-
#2177
#2177
Payroll deposit
-
#2178
#2178
Phone bill
-
#2179
#2179
Cash withdrawal
-
#2180
#2180
Restaurant charge
-
#2181
#2181
Loan interest payment
-
#2182
#2182
ATM fee
-
#2183
#2183
Investment transfer
-
#2184
#2184
Internal transfer
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": 2161,
"accountId": 366,
"kind": "deposit",
"amount": 7153.6,
"currency": "CNY",
"description": "Bank transfer in",
"status": "completed",
"occurredAt": "2025-04-19T17:21:08.892Z",
"createdAt": "2025-04-19T17:22:00.793Z"
},
{
"id": 2162,
"accountId": 315,
"kind": "fee",
"amount": -1361.69,
"currency": "USD",
"description": "Overdraft fee",
"status": "completed",
"occurredAt": "2025-11-03T16:33:23.863Z",
"createdAt": "2025-11-03T16:34:02.299Z"
},
{
"id": 2163,
"accountId": 349,
"kind": "deposit",
"amount": 7633.98,
"currency": "CHF",
"description": "Dividend payment",
"status": "completed",
"occurredAt": "2025-06-24T08:25:03.957Z",
"createdAt": "2025-06-24T08:25:27.087Z"
}
],
"meta": {
"page": 91,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=91&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=92&limit=24",
"prev": "/api/v1/transactions?page=90&limit=24"
}
}