budgets / #214
- userId
-
Mia Renner @mia.renner47
- name
- Personal Care
- categoryId
- 17
- amount
- 2417.46
- period
- yearly
- spent
- 2055.14
- currency
- CAD
- startsAt
- 2026-03-31
- endsAt
- —
- createdAt
Component variants
Medium
Personal Care
#214
Small
budgets/214 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/214"
);
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/214"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/214"
)
budget = res.json() {
"id": 214,
"userId": 212,
"name": "Personal Care",
"categoryId": 17,
"amount": 2417.46,
"period": "yearly",
"spent": 2055.14,
"currency": "CAD",
"startsAt": "2026-03-31",
"endsAt": null,
"createdAt": "2026-04-03T11:31:48.876Z"
}