budgets / #22
- userId
-
Rosella Homenick @rosella.homenick
- name
- Gifts
- categoryId
- 3
- amount
- 2282.84
- period
- quarterly
- spent
- 2252.45
- currency
- CAD
- startsAt
- 2026-01-28
- endsAt
- 2026-04-28
- createdAt
Component variants
Medium
Gifts
#22
Small
budgets/22 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/22"
);
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/22"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/22"
)
budget = res.json() {
"id": 22,
"userId": 27,
"name": "Gifts",
"categoryId": 3,
"amount": 2282.84,
"period": "quarterly",
"spent": 2252.45,
"currency": "CAD",
"startsAt": "2026-01-28",
"endsAt": "2026-04-28",
"createdAt": "2026-03-01T12:12:43.480Z"
}