transactions
transactions
Page 26 of 105.
Overview
-
#601
#601
Overdraft fee
-
#602
#602
Wire transfer sent
-
#603
#603
ATM withdrawal
-
#604
#604
Loan interest payment
-
#605
#605
Cash deposit
-
#606
#606
ATM withdrawal
-
#607
#607
Investment transfer
-
#608
#608
Online purchase
-
#609
#609
Savings interest
-
#610
#610
Direct deposit
-
#611
#611
Phone bill
-
#612
#612
ATM withdrawal
-
#613
#613
Payroll deposit
-
#614
#614
Interest charge
-
#615
#615
Freelance payment received
-
#616
#616
Loan interest payment
-
#617
#617
Monthly maintenance fee
-
#618
#618
Payroll deposit
-
#619
#619
Bank transfer out
-
#620
#620
Savings interest
-
#621
#621
Bank transfer out
-
#622
#622
Subscription refund
-
#623
#623
Rent payment
-
#624
#624
Wire transfer sent
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": 601,
"accountId": 182,
"kind": "fee",
"amount": -3095.66,
"currency": "CAD",
"description": "Overdraft fee",
"status": "failed",
"occurredAt": "2025-07-03T15:26:05.500Z",
"createdAt": "2025-07-03T15:26:18.085Z"
},
{
"id": 602,
"accountId": 502,
"kind": "withdrawal",
"amount": -4677.68,
"currency": "EUR",
"description": "Wire transfer sent",
"status": "completed",
"occurredAt": "2024-08-10T17:32:05.897Z",
"createdAt": "2024-08-10T17:32:56.222Z"
},
{
"id": 603,
"accountId": 54,
"kind": "withdrawal",
"amount": -1939.09,
"currency": "CAD",
"description": "ATM withdrawal",
"status": "completed",
"occurredAt": "2024-09-14T12:32:39.664Z",
"createdAt": "2024-09-14T12:32:58.304Z"
}
],
"meta": {
"page": 26,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=26&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=27&limit=24",
"prev": "/api/v1/transactions?page=25&limit=24"
}
}