budgets / #182
- userId
-
Lazaro Herzog @lazaro_herzog
- name
- Savings Goal
- categoryId
- —
- amount
- 4470.13
- period
- quarterly
- spent
- 2490.28
- currency
- CAD
- startsAt
- 2025-05-06
- endsAt
- —
- createdAt
Component variants
Medium
Savings Goal
#182
Small
budgets/182 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/182" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/182"
);
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/182"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/182"
)
budget = res.json() {
"id": 182,
"userId": 181,
"name": "Savings Goal",
"categoryId": null,
"amount": 4470.13,
"period": "quarterly",
"spent": 2490.28,
"currency": "CAD",
"startsAt": "2025-05-06",
"endsAt": null,
"createdAt": "2025-05-29T11:06:18.648Z"
}