budgets / #88
- userId
-
Hortense Cruickshank @hortense.cruickshank65
- name
- Home Improvement
- categoryId
- —
- amount
- 3074.8
- period
- weekly
- spent
- 2578.94
- currency
- CAD
- startsAt
- 2025-11-15
- endsAt
- 2025-11-22
- createdAt
Component variants
Medium
Home Improvement
#88
Small
budgets/88 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/88"
);
const budget = await res.json();import type { Budget } from "https://example-data.com/types/budgets.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/budgets/88"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/88"
)
budget = res.json() {
"id": 88,
"userId": 83,
"name": "Home Improvement",
"categoryId": null,
"amount": 3074.8,
"period": "weekly",
"spent": 2578.94,
"currency": "CAD",
"startsAt": "2025-11-15",
"endsAt": "2025-11-22",
"createdAt": "2026-04-10T20:57:05.949Z"
}