transactions
transactions
Page 94 of 105.
Overview
-
#2233
#2233
Restaurant charge
-
#2234
#2234
Investment transfer
-
#2235
#2235
Subscription refund
-
#2236
#2236
Monthly maintenance fee
-
#2237
#2237
Dispute resolved — credit
-
#2238
#2238
Interest charge
-
#2239
#2239
Internal transfer
-
#2240
#2240
Bank transfer out
-
#2241
#2241
Account transfer
-
#2242
#2242
ATM fee
-
#2243
#2243
Cash withdrawal
-
#2244
#2244
Purchase refund
-
#2245
#2245
Credit card interest
-
#2246
#2246
Credit card interest
-
#2247
#2247
Purchase refund
-
#2248
#2248
Investment transfer
-
#2249
#2249
Purchase refund
-
#2250
#2250
Return credit
-
#2251
#2251
Wire transfer fee
-
#2252
#2252
Wire transfer sent
-
#2253
#2253
Return credit
-
#2254
#2254
Savings transfer
-
#2255
#2255
Direct deposit
-
#2256
#2256
Foreign transaction 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": 2233,
"accountId": 58,
"kind": "payment",
"amount": -2506.91,
"currency": "EUR",
"description": "Restaurant charge",
"status": "completed",
"occurredAt": "2025-04-05T18:28:29.705Z",
"createdAt": "2025-04-05T18:28:34.872Z"
},
{
"id": 2234,
"accountId": 239,
"kind": "transfer",
"amount": 1751.44,
"currency": "CAD",
"description": "Investment transfer",
"status": "completed",
"occurredAt": "2025-11-12T13:56:03.584Z",
"createdAt": "2025-11-12T13:56:56.084Z"
},
{
"id": 2235,
"accountId": 387,
"kind": "refund",
"amount": 1895.46,
"currency": "CHF",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2024-10-01T21:33:08.570Z",
"createdAt": "2024-10-01T21:33:15.696Z"
}
],
"meta": {
"page": 94,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=94&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=95&limit=24",
"prev": "/api/v1/transactions?page=93&limit=24"
}
}