budgets / #92
- userId
-
Myrl Pollich @myrl.pollich
- name
- Transportation
- categoryId
- —
- amount
- 3200.65
- period
- quarterly
- spent
- 48.93
- currency
- CAD
- startsAt
- 2025-11-25
- endsAt
- 2026-02-23
- createdAt
Component variants
Medium
Transportation
#92
Small
budgets/92 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/92"
);
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/92"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/92"
)
budget = res.json() {
"id": 92,
"userId": 90,
"name": "Transportation",
"categoryId": null,
"amount": 3200.65,
"period": "quarterly",
"spent": 48.93,
"currency": "CAD",
"startsAt": "2025-11-25",
"endsAt": "2026-02-23",
"createdAt": "2026-01-30T17:53:27.525Z"
}