budgets / #142
- userId
-
Carley Gleichner @carley.gleichner
- name
- Groceries
- categoryId
- 9
- amount
- 3117.85
- period
- monthly
- spent
- 2483.42
- currency
- AUD
- startsAt
- 2025-12-04
- endsAt
- —
- createdAt
Component variants
Medium
Groceries
#142
Small
budgets/142 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/142"
);
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/142"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/142"
)
budget = res.json() {
"id": 142,
"userId": 142,
"name": "Groceries",
"categoryId": 9,
"amount": 3117.85,
"period": "monthly",
"spent": 2483.42,
"currency": "AUD",
"startsAt": "2025-12-04",
"endsAt": null,
"createdAt": "2026-01-02T01:16:36.135Z"
}