budgets
budgets
Page 4 of 11.
Overview
-
Travel
#73
-
Subscriptions
#74
-
Dining Out
#75
-
Savings Goal
#76
-
Utilities
#77
-
Groceries
#78
-
Gifts
#79
-
Pet Expenses
#80
-
Clothing
#81
-
Gifts
#82
-
Utilities
#83
-
Transportation
#84
-
Personal Care
#85
-
Travel
#86
-
Transportation
#87
-
Home Improvement
#88
-
Dining Out
#89
-
Office Supplies
#90
-
Dining Out
#91
-
Transportation
#92
-
Groceries
#93
-
Personal Care
#94
-
Home Improvement
#95
-
Groceries
#96
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/budgets.d.ts https://example-data.com/types/budgets.d.ts
import type { Budget, ListEnvelope } from "./types/budgets";
const res = await fetch(
"https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Budget>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 73,
"userId": 72,
"name": "Travel",
"categoryId": null,
"amount": 2083.17,
"period": "yearly",
"spent": 1738.25,
"currency": "EUR",
"startsAt": "2026-05-04",
"endsAt": "2027-05-04",
"createdAt": "2026-05-18T07:13:11.857Z"
},
{
"id": 74,
"userId": 72,
"name": "Subscriptions",
"categoryId": null,
"amount": 290.67,
"period": "monthly",
"spent": 236.24,
"currency": "CAD",
"startsAt": "2025-08-15",
"endsAt": "2025-09-14",
"createdAt": "2025-12-26T16:40:41.908Z"
},
{
"id": 75,
"userId": 74,
"name": "Dining Out",
"categoryId": 3,
"amount": 204.59,
"period": "yearly",
"spent": 70.24,
"currency": "USD",
"startsAt": "2025-01-22",
"endsAt": null,
"createdAt": "2025-11-06T16:29:31.423Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/budgets?page=4&limit=24",
"first": "/api/v1/budgets?page=1&limit=24",
"last": "/api/v1/budgets?page=11&limit=24",
"next": "/api/v1/budgets?page=5&limit=24",
"prev": "/api/v1/budgets?page=3&limit=24"
}
}