transactions
transactions
Page 67 of 105.
Overview
-
#1585
#1585
Check withdrawal
-
#1586
#1586
Check withdrawal
-
#1587
#1587
Payoff transfer
-
#1588
#1588
Check withdrawal
-
#1589
#1589
Merchant refund
-
#1590
#1590
Return credit
-
#1591
#1591
Payoff transfer
-
#1592
#1592
Savings transfer
-
#1593
#1593
Overdraft fee
-
#1594
#1594
Freelance payment received
-
#1595
#1595
Return credit
-
#1596
#1596
Credit card interest
-
#1597
#1597
Payroll deposit
-
#1598
#1598
Credit card payment
-
#1599
#1599
Overdraft fee
-
#1600
#1600
Return credit
-
#1601
#1601
Interest charge
-
#1602
#1602
Internal transfer
-
#1603
#1603
Return credit
-
#1604
#1604
Late payment fee
-
#1605
#1605
Grocery store
-
#1606
#1606
Loan interest payment
-
#1607
#1607
ATM withdrawal
-
#1608
#1608
Account service 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": 1585,
"accountId": 1,
"kind": "withdrawal",
"amount": -4751.84,
"currency": "EUR",
"description": "Check withdrawal",
"status": "completed",
"occurredAt": "2025-10-21T23:52:19.656Z",
"createdAt": "2025-10-21T23:52:56.275Z"
},
{
"id": 1586,
"accountId": 173,
"kind": "withdrawal",
"amount": -4648.81,
"currency": "USD",
"description": "Check withdrawal",
"status": "pending",
"occurredAt": "2025-03-31T05:41:34.157Z",
"createdAt": "2025-03-31T05:41:37.701Z"
},
{
"id": 1587,
"accountId": 102,
"kind": "transfer",
"amount": 1747.77,
"currency": "JPY",
"description": "Payoff transfer",
"status": "completed",
"occurredAt": "2024-09-21T14:25:28.008Z",
"createdAt": "2024-09-21T14:26:04.789Z"
}
],
"meta": {
"page": 67,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=67&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=68&limit=24",
"prev": "/api/v1/transactions?page=66&limit=24"
}
}