transactions
transactions
Page 80 of 105.
Overview
-
#1897
#1897
Direct deposit
-
#1898
#1898
Savings transfer
-
#1899
#1899
Interest charge
-
#1900
#1900
Interest credit
-
#1901
#1901
Restaurant charge
-
#1902
#1902
Bank transfer in
-
#1903
#1903
Direct deposit
-
#1904
#1904
Payoff transfer
-
#1905
#1905
Internal transfer
-
#1906
#1906
Payoff transfer
-
#1907
#1907
Return credit
-
#1908
#1908
Mortgage payment
-
#1909
#1909
Loan interest payment
-
#1910
#1910
Loan interest payment
-
#1911
#1911
Account transfer
-
#1912
#1912
Savings interest
-
#1913
#1913
Insurance premium
-
#1914
#1914
Grocery store
-
#1915
#1915
Payoff transfer
-
#1916
#1916
Grocery store
-
#1917
#1917
Wire transfer sent
-
#1918
#1918
Interest charge
-
#1919
#1919
Insurance premium
-
#1920
#1920
Payoff 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": 1897,
"accountId": 485,
"kind": "deposit",
"amount": 4635.38,
"currency": "EUR",
"description": "Direct deposit",
"status": "pending",
"occurredAt": "2025-09-06T03:12:33.557Z",
"createdAt": "2025-09-06T03:12:35.387Z"
},
{
"id": 1898,
"accountId": 69,
"kind": "transfer",
"amount": 2663.53,
"currency": "AUD",
"description": "Savings transfer",
"status": "completed",
"occurredAt": "2026-04-15T22:06:25.848Z",
"createdAt": "2026-04-15T22:06:50.617Z"
},
{
"id": 1899,
"accountId": 46,
"kind": "interest",
"amount": 5816.74,
"currency": "USD",
"description": "Interest charge",
"status": "cancelled",
"occurredAt": "2025-02-24T06:39:05.743Z",
"createdAt": "2025-02-24T06:39:08.180Z"
}
],
"meta": {
"page": 80,
"limit": 24,
"total": 2500,
"totalPages": 105
},
"links": {
"self": "/api/v1/transactions?page=80&limit=24",
"first": "/api/v1/transactions?page=1&limit=24",
"last": "/api/v1/transactions?page=105&limit=24",
"next": "/api/v1/transactions?page=81&limit=24",
"prev": "/api/v1/transactions?page=79&limit=24"
}
}