transactions
transactions
Page 39 of 105.
Overview
-
#913
#913
Rent payment
-
#914
#914
Interest charge
-
#915
#915
Loan payment
-
#916
#916
Purchase refund
-
#917
#917
ATM withdrawal
-
#918
#918
Dispute resolved — credit
-
#919
#919
ATM withdrawal
-
#920
#920
Purchase refund
-
#921
#921
Foreign transaction fee
-
#922
#922
ATM fee
-
#923
#923
Loan payment
-
#924
#924
Account transfer
-
#925
#925
Payoff transfer
-
#926
#926
Restaurant charge
-
#927
#927
Merchant refund
-
#928
#928
Return credit
-
#929
#929
Payoff transfer
-
#930
#930
Refund credit
-
#931
#931
Investment transfer
-
#932
#932
Internal transfer
-
#933
#933
Streaming service
-
#934
#934
Interest charge
-
#935
#935
Return credit
-
#936
#936
Freelance payment received
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": 913,
"accountId": 498,
"kind": "payment",
"amount": -4944.67,
"currency": "USD",
"description": "Rent payment",
"status": "completed",
"occurredAt": "2026-01-22T22:28:35.831Z",
"createdAt": "2026-01-22T22:28:37.455Z"
},
{
"id": 914,
"accountId": 6,
"kind": "interest",
"amount": 2137.6,
"currency": "CAD",
"description": "Interest charge",
"status": "completed",
"occurredAt": "2026-02-28T14:51:45.597Z",
"createdAt": "2026-02-28T14:51:54.307Z"
},
{
"id": 915,
"accountId": 169,
"kind": "payment",
"amount": -232.24,
"currency": "CAD",
"description": "Loan payment",
"status": "completed",
"occurredAt": "2024-09-17T05:24:40.180Z",
"createdAt": "2024-09-17T05:25:09.780Z"
}
],
"meta": {
"page": 39,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=39&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=40&limit=24",
"prev": "/api/v1/transactions?page=38&limit=24"
}
}