budgets / #54
- userId
-
Jo Haag-Mayer @jo_haag-mayer
- name
- Healthcare
- categoryId
- —
- amount
- 2479.75
- period
- quarterly
- spent
- 2475.38
- currency
- AUD
- startsAt
- 2026-04-24
- endsAt
- 2026-07-23
- createdAt
Component variants
Medium
Healthcare
#54
Small
budgets/54 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/54"
);
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/54"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/54"
)
budget = res.json() {
"id": 54,
"userId": 54,
"name": "Healthcare",
"categoryId": null,
"amount": 2479.75,
"period": "quarterly",
"spent": 2475.38,
"currency": "AUD",
"startsAt": "2026-04-24",
"endsAt": "2026-07-23",
"createdAt": "2026-05-18T18:08:49.762Z"
}