budgets / #230
- userId
-
Malvina Ortiz @malvina_ortiz
- name
- Electronics
- categoryId
- 21
- amount
- 796.14
- period
- yearly
- spent
- 359.75
- currency
- CAD
- startsAt
- 2026-01-05
- endsAt
- 2027-01-05
- createdAt
Component variants
Medium
Electronics
#230
Small
budgets/230 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/230"
);
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/230"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/230"
)
budget = res.json() {
"id": 230,
"userId": 234,
"name": "Electronics",
"categoryId": 21,
"amount": 796.14,
"period": "yearly",
"spent": 359.75,
"currency": "CAD",
"startsAt": "2026-01-05",
"endsAt": "2027-01-05",
"createdAt": "2026-03-10T02:25:54.229Z"
}