transactions
transactions
Page 68 of 105.
Overview
-
#1609
#1609
Online purchase
-
#1610
#1610
Bank transfer out
-
#1611
#1611
Credit card interest
-
#1612
#1612
Savings interest
-
#1613
#1613
Loan interest payment
-
#1614
#1614
Cash deposit
-
#1615
#1615
Account transfer
-
#1616
#1616
Refund credit
-
#1617
#1617
Payoff transfer
-
#1618
#1618
Dividend payment
-
#1619
#1619
Streaming service
-
#1620
#1620
Savings interest
-
#1621
#1621
Grocery store
-
#1622
#1622
Loan interest payment
-
#1623
#1623
ATM fee
-
#1624
#1624
Online purchase
-
#1625
#1625
Dispute resolved — credit
-
#1626
#1626
Dispute resolved — credit
-
#1627
#1627
Interest charge
-
#1628
#1628
Investment transfer
-
#1629
#1629
Savings transfer
-
#1630
#1630
Investment transfer
-
#1631
#1631
Check withdrawal
-
#1632
#1632
Bank transfer out
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": 1609,
"accountId": 119,
"kind": "payment",
"amount": -2078.84,
"currency": "JPY",
"description": "Online purchase",
"status": "completed",
"occurredAt": "2024-05-27T18:12:27.374Z",
"createdAt": "2024-05-27T18:13:15.389Z"
},
{
"id": 1610,
"accountId": 335,
"kind": "withdrawal",
"amount": -3736.6,
"currency": "CNY",
"description": "Bank transfer out",
"status": "completed",
"occurredAt": "2026-04-19T20:27:24.265Z",
"createdAt": "2026-04-19T20:28:04.171Z"
},
{
"id": 1611,
"accountId": 267,
"kind": "interest",
"amount": -480.25,
"currency": "EUR",
"description": "Credit card interest",
"status": "completed",
"occurredAt": "2025-04-07T17:35:42.091Z",
"createdAt": "2025-04-07T17:36:30.518Z"
}
],
"meta": {
"page": 68,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=68&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=69&limit=24",
"prev": "/api/v1/transactions?page=67&limit=24"
}
}