transactions
transactions
Page 64 of 105.
Overview
-
#1513
#1513
Direct deposit
-
#1514
#1514
Subscription refund
-
#1515
#1515
Wire transfer sent
-
#1516
#1516
Credit card interest
-
#1517
#1517
Savings interest
-
#1518
#1518
Loan interest payment
-
#1519
#1519
Payoff transfer
-
#1520
#1520
Wire transfer sent
-
#1521
#1521
Account transfer
-
#1522
#1522
Online purchase
-
#1523
#1523
Merchant refund
-
#1524
#1524
Foreign transaction fee
-
#1525
#1525
Dispute resolved — credit
-
#1526
#1526
Account transfer
-
#1527
#1527
Streaming service
-
#1528
#1528
Loan interest payment
-
#1529
#1529
Cash withdrawal
-
#1530
#1530
Bank transfer out
-
#1531
#1531
ATM withdrawal
-
#1532
#1532
Return credit
-
#1533
#1533
Savings interest
-
#1534
#1534
Return credit
-
#1535
#1535
Loan interest payment
-
#1536
#1536
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": 1513,
"accountId": 46,
"kind": "deposit",
"amount": 9082.51,
"currency": "USD",
"description": "Direct deposit",
"status": "completed",
"occurredAt": "2024-11-25T16:31:22.089Z",
"createdAt": "2024-11-25T16:32:04.827Z"
},
{
"id": 1514,
"accountId": 501,
"kind": "refund",
"amount": 284.34,
"currency": "EUR",
"description": "Subscription refund",
"status": "completed",
"occurredAt": "2024-09-30T11:32:32.404Z",
"createdAt": "2024-09-30T11:33:01.809Z"
},
{
"id": 1515,
"accountId": 1,
"kind": "withdrawal",
"amount": -3592.45,
"currency": "EUR",
"description": "Wire transfer sent",
"status": "failed",
"occurredAt": "2026-04-18T16:16:56.046Z",
"createdAt": "2026-04-18T16:17:17.646Z"
}
],
"meta": {
"page": 64,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=64&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=65&limit=24",
"prev": "/api/v1/transactions?page=63&limit=24"
}
}