budgets / #98
- userId
-
Camron O'Conner @camron.oconner54
- name
- Gifts
- categoryId
- 34
- amount
- 1053.01
- period
- quarterly
- spent
- 325.55
- currency
- EUR
- startsAt
- 2025-08-29
- endsAt
- —
- createdAt
Component variants
Medium
Gifts
#98
Small
budgets/98 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/98" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/98"
);
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/98"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/98"
)
budget = res.json() {
"id": 98,
"userId": 94,
"name": "Gifts",
"categoryId": 34,
"amount": 1053.01,
"period": "quarterly",
"spent": 325.55,
"currency": "EUR",
"startsAt": "2025-08-29",
"endsAt": null,
"createdAt": "2026-02-10T23:29:40.997Z"
}