transactions
transactions
Page 52 of 105.
Overview
-
#1225
#1225
Account service fee
-
#1226
#1226
Wire transfer fee
-
#1227
#1227
Savings transfer
-
#1228
#1228
Return credit
-
#1229
#1229
Credit card interest
-
#1230
#1230
Bank transfer in
-
#1231
#1231
Online purchase
-
#1232
#1232
Investment transfer
-
#1233
#1233
Purchase refund
-
#1234
#1234
Dispute resolved — credit
-
#1235
#1235
Restaurant charge
-
#1236
#1236
Merchant refund
-
#1237
#1237
Merchant refund
-
#1238
#1238
Credit card interest
-
#1239
#1239
Dispute resolved — credit
-
#1240
#1240
Bank transfer out
-
#1241
#1241
Restaurant charge
-
#1242
#1242
Rent payment
-
#1243
#1243
Account transfer
-
#1244
#1244
Bank transfer out
-
#1245
#1245
Wire transfer sent
-
#1246
#1246
Direct deposit
-
#1247
#1247
Credit card payment
-
#1248
#1248
Return credit
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": 1225,
"accountId": 121,
"kind": "fee",
"amount": -3402.08,
"currency": "CAD",
"description": "Account service fee",
"status": "completed",
"occurredAt": "2025-11-14T10:11:50.377Z",
"createdAt": "2025-11-14T10:12:47.090Z"
},
{
"id": 1226,
"accountId": 267,
"kind": "fee",
"amount": -941.73,
"currency": "EUR",
"description": "Wire transfer fee",
"status": "pending",
"occurredAt": "2025-04-10T23:35:06.337Z",
"createdAt": "2025-04-10T23:35:59.594Z"
},
{
"id": 1227,
"accountId": 500,
"kind": "transfer",
"amount": 4232.61,
"currency": "CHF",
"description": "Savings transfer",
"status": "completed",
"occurredAt": "2025-11-06T16:25:34.803Z",
"createdAt": "2025-11-06T16:26:34.665Z"
}
],
"meta": {
"page": 52,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=52&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=53&limit=24",
"prev": "/api/v1/transactions?page=51&limit=24"
}
}