budgets / #55
- userId
-
Jo Haag-Mayer @jo_haag-mayer
- name
- Entertainment
- categoryId
- —
- amount
- 3000.56
- period
- monthly
- spent
- 2427.88
- currency
- AUD
- startsAt
- 2026-02-21
- endsAt
- —
- createdAt
Component variants
Medium
Entertainment
#55
Small
budgets/55 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/55"
);
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/55"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/55"
)
budget = res.json() {
"id": 55,
"userId": 54,
"name": "Entertainment",
"categoryId": null,
"amount": 3000.56,
"period": "monthly",
"spent": 2427.88,
"currency": "AUD",
"startsAt": "2026-02-21",
"endsAt": null,
"createdAt": "2026-03-13T22:24:23.760Z"
}