transactions
transactions
Page 82 of 105.
Overview
-
#1945
#1945
Internal transfer
-
#1946
#1946
Return credit
-
#1947
#1947
Cash deposit
-
#1948
#1948
Return credit
-
#1949
#1949
Foreign transaction fee
-
#1950
#1950
Monthly maintenance fee
-
#1951
#1951
Interest charge
-
#1952
#1952
Subscription refund
-
#1953
#1953
Insurance premium
-
#1954
#1954
ATM withdrawal
-
#1955
#1955
Credit card interest
-
#1956
#1956
Loan payment
-
#1957
#1957
Payroll deposit
-
#1958
#1958
Purchase refund
-
#1959
#1959
Interest charge
-
#1960
#1960
Foreign transaction fee
-
#1961
#1961
Direct deposit
-
#1962
#1962
Rent payment
-
#1963
#1963
Subscription refund
-
#1964
#1964
Payoff transfer
-
#1965
#1965
Subscription refund
-
#1966
#1966
Grocery store
-
#1967
#1967
Purchase refund
-
#1968
#1968
Phone bill
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": 1945,
"accountId": 349,
"kind": "transfer",
"amount": -1529.62,
"currency": "CHF",
"description": "Internal transfer",
"status": "failed",
"occurredAt": "2026-03-11T21:37:14.784Z",
"createdAt": "2026-03-11T21:37:46.822Z"
},
{
"id": 1946,
"accountId": 230,
"kind": "refund",
"amount": 2839.88,
"currency": "AUD",
"description": "Return credit",
"status": "pending",
"occurredAt": "2026-01-08T22:00:42.504Z",
"createdAt": "2026-01-08T22:00:55.521Z"
},
{
"id": 1947,
"accountId": 385,
"kind": "deposit",
"amount": 7974.65,
"currency": "CHF",
"description": "Cash deposit",
"status": "completed",
"occurredAt": "2024-10-10T17:30:48.022Z",
"createdAt": "2024-10-10T17:31:21.074Z"
}
],
"meta": {
"page": 82,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=82&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=83&limit=24",
"prev": "/api/v1/transactions?page=81&limit=24"
}
}