budgets / #212
- userId
-
Carroll Wisozk @carroll_wisozk
- name
- Healthcare
- categoryId
- 30
- amount
- 1873.82
- period
- monthly
- spent
- 1668.37
- currency
- CAD
- startsAt
- 2026-05-15
- endsAt
- —
- createdAt
Component variants
Medium
Healthcare
#212
Small
budgets/212 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/212" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/212"
);
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/212"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/212"
)
budget = res.json() {
"id": 212,
"userId": 210,
"name": "Healthcare",
"categoryId": 30,
"amount": 1873.82,
"period": "monthly",
"spent": 1668.37,
"currency": "CAD",
"startsAt": "2026-05-15",
"endsAt": null,
"createdAt": "2026-05-16T12:36:31.965Z"
}