budgets / #151
- userId
-
Brad Wisoky @brad.wisoky41
- name
- Home Improvement
- categoryId
- —
- amount
- 1745.6
- period
- monthly
- spent
- 780.13
- currency
- GBP
- startsAt
- 2025-04-12
- endsAt
- —
- createdAt
Component variants
Medium
Home Improvement
#151
Small
budgets/151 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/151" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/151"
);
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/151"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/151"
)
budget = res.json() {
"id": 151,
"userId": 154,
"name": "Home Improvement",
"categoryId": null,
"amount": 1745.6,
"period": "monthly",
"spent": 780.13,
"currency": "GBP",
"startsAt": "2025-04-12",
"endsAt": null,
"createdAt": "2025-12-21T10:00:27.451Z"
}