budgets / #132
- userId
-
Wade Upton @wade_upton78
- name
- Entertainment
- categoryId
- —
- amount
- 2366.56
- period
- quarterly
- spent
- 1779.02
- currency
- USD
- startsAt
- 2025-02-18
- endsAt
- —
- createdAt
Component variants
Medium
Entertainment
#132
Small
budgets/132 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/132"
);
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/132"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/132"
)
budget = res.json() {
"id": 132,
"userId": 129,
"name": "Entertainment",
"categoryId": null,
"amount": 2366.56,
"period": "quarterly",
"spent": 1779.02,
"currency": "USD",
"startsAt": "2025-02-18",
"endsAt": null,
"createdAt": "2025-03-11T04:43:51.492Z"
}