budgets / #162
- userId
-
Cindy Barrows @cindy_barrows20
- name
- Clothing
- categoryId
- —
- amount
- 299.46
- period
- yearly
- spent
- 140.71
- currency
- CAD
- startsAt
- 2025-10-09
- endsAt
- —
- createdAt
Component variants
Medium
Clothing
#162
Small
budgets/162 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/162" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/162"
);
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/162"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/162"
)
budget = res.json() {
"id": 162,
"userId": 165,
"name": "Clothing",
"categoryId": null,
"amount": 299.46,
"period": "yearly",
"spent": 140.71,
"currency": "CAD",
"startsAt": "2025-10-09",
"endsAt": null,
"createdAt": "2025-11-02T03:36:04.450Z"
}