budgets / #36
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- name
- Savings Goal
- categoryId
- 20
- amount
- 3184.08
- period
- quarterly
- spent
- 3173.12
- currency
- USD
- startsAt
- 2025-12-20
- endsAt
- —
- createdAt
Component variants
Medium
Savings Goal
#36
Small
budgets/36 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/36"
);
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/36"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/36"
)
budget = res.json() {
"id": 36,
"userId": 40,
"name": "Savings Goal",
"categoryId": 20,
"amount": 3184.08,
"period": "quarterly",
"spent": 3173.12,
"currency": "USD",
"startsAt": "2025-12-20",
"endsAt": null,
"createdAt": "2026-04-11T21:51:14.740Z"
}