transactions
transactions
Page 28 of 105.
Overview
-
#649
#649
Account transfer
-
#650
#650
Utility bill payment
-
#651
#651
Payoff transfer
-
#652
#652
Loan interest payment
-
#653
#653
Overdraft fee
-
#654
#654
Bank transfer in
-
#655
#655
Foreign transaction fee
-
#656
#656
Mortgage payment
-
#657
#657
Loan interest payment
-
#658
#658
Return credit
-
#659
#659
Dispute resolved — credit
-
#660
#660
Account transfer
-
#661
#661
Bank transfer out
-
#662
#662
Freelance payment received
-
#663
#663
Bank transfer in
-
#664
#664
Wire transfer sent
-
#665
#665
Freelance payment received
-
#666
#666
Account transfer
-
#667
#667
Loan payment
-
#668
#668
Restaurant charge
-
#669
#669
Dispute resolved — credit
-
#670
#670
Investment transfer
-
#671
#671
Merchant refund
-
#672
#672
Savings transfer
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": 649,
"accountId": 375,
"kind": "transfer",
"amount": -2506.44,
"currency": "JPY",
"description": "Account transfer",
"status": "completed",
"occurredAt": "2024-08-20T07:02:29.813Z",
"createdAt": "2024-08-20T07:03:26.102Z"
},
{
"id": 650,
"accountId": 421,
"kind": "payment",
"amount": -2541.51,
"currency": "JPY",
"description": "Utility bill payment",
"status": "completed",
"occurredAt": "2026-01-26T09:58:03.934Z",
"createdAt": "2026-01-26T09:58:23.782Z"
},
{
"id": 651,
"accountId": 105,
"kind": "transfer",
"amount": 4915.75,
"currency": "JPY",
"description": "Payoff transfer",
"status": "completed",
"occurredAt": "2025-12-27T00:39:24.090Z",
"createdAt": "2025-12-27T00:39:47.341Z"
}
],
"meta": {
"page": 28,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=28&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=29&limit=24",
"prev": "/api/v1/transactions?page=27&limit=24"
}
}