transactions
transactions
Page 35 of 105.
Overview
-
#817
#817
Monthly maintenance fee
-
#818
#818
Payoff transfer
-
#819
#819
Dispute resolved — credit
-
#820
#820
Return credit
-
#821
#821
Subscription refund
-
#822
#822
Internal transfer
-
#823
#823
Bank transfer in
-
#824
#824
Interest charge
-
#825
#825
Restaurant charge
-
#826
#826
Subscription refund
-
#827
#827
Subscription refund
-
#828
#828
Internal transfer
-
#829
#829
Online purchase
-
#830
#830
Account transfer
-
#831
#831
Refund credit
-
#832
#832
Wire transfer received
-
#833
#833
Investment transfer
-
#834
#834
Grocery store
-
#835
#835
Check withdrawal
-
#836
#836
ATM withdrawal
-
#837
#837
ATM fee
-
#838
#838
Phone bill
-
#839
#839
Direct deposit
-
#840
#840
Cash withdrawal
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": 817,
"accountId": 193,
"kind": "fee",
"amount": -2817.3,
"currency": "GBP",
"description": "Monthly maintenance fee",
"status": "completed",
"occurredAt": "2026-01-28T02:00:39.455Z",
"createdAt": "2026-01-28T02:00:53.818Z"
},
{
"id": 818,
"accountId": 496,
"kind": "transfer",
"amount": -4553.19,
"currency": "JPY",
"description": "Payoff transfer",
"status": "completed",
"occurredAt": "2026-02-05T12:21:38.053Z",
"createdAt": "2026-02-05T12:21:54.761Z"
},
{
"id": 819,
"accountId": 119,
"kind": "refund",
"amount": 1073.06,
"currency": "JPY",
"description": "Dispute resolved — credit",
"status": "completed",
"occurredAt": "2025-07-08T22:19:24.009Z",
"createdAt": "2025-07-08T22:20:12.030Z"
}
],
"meta": {
"page": 35,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=35&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=36&limit=24",
"prev": "/api/v1/transactions?page=34&limit=24"
}
}