transactions
transactions
Page 54 of 105.
Overview
-
#1273
#1273
Interest credit
-
#1274
#1274
Account transfer
-
#1275
#1275
Bank transfer out
-
#1276
#1276
Account transfer
-
#1277
#1277
Online purchase
-
#1278
#1278
Overdraft fee
-
#1279
#1279
Payoff transfer
-
#1280
#1280
Late payment fee
-
#1281
#1281
ATM fee
-
#1282
#1282
Direct deposit
-
#1283
#1283
Loan interest payment
-
#1284
#1284
Loan payment
-
#1285
#1285
Purchase refund
-
#1286
#1286
Late payment fee
-
#1287
#1287
Restaurant charge
-
#1288
#1288
Refund credit
-
#1289
#1289
Check withdrawal
-
#1290
#1290
Investment transfer
-
#1291
#1291
Wire transfer received
-
#1292
#1292
Subscription refund
-
#1293
#1293
Check withdrawal
-
#1294
#1294
Streaming service
-
#1295
#1295
Rent payment
-
#1296
#1296
Investment 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": 1273,
"accountId": 206,
"kind": "deposit",
"amount": 6833.86,
"currency": "CAD",
"description": "Interest credit",
"status": "completed",
"occurredAt": "2025-01-16T00:10:56.832Z",
"createdAt": "2025-01-16T00:11:20.991Z"
},
{
"id": 1274,
"accountId": 397,
"kind": "transfer",
"amount": 1914.97,
"currency": "USD",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2025-05-25T01:13:41.316Z",
"createdAt": "2025-05-25T01:14:10.256Z"
},
{
"id": 1275,
"accountId": 282,
"kind": "withdrawal",
"amount": -58.33,
"currency": "AUD",
"description": "Bank transfer out",
"status": "completed",
"occurredAt": "2024-06-23T00:17:28.359Z",
"createdAt": "2024-06-23T00:17:35.396Z"
}
],
"meta": {
"page": 54,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=54&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=55&limit=24",
"prev": "/api/v1/transactions?page=53&limit=24"
}
}