budgets / #178
- userId
-
Gerald Lind @gerald_lind57
- name
- Gifts
- categoryId
- —
- amount
- 3371.98
- period
- quarterly
- spent
- 1951.61
- currency
- USD
- startsAt
- 2025-04-19
- endsAt
- —
- createdAt
Component variants
Medium
Gifts
#178
Small
budgets/178 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/178"
);
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/178"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/178"
)
budget = res.json() {
"id": 178,
"userId": 179,
"name": "Gifts",
"categoryId": null,
"amount": 3371.98,
"period": "quarterly",
"spent": 1951.61,
"currency": "USD",
"startsAt": "2025-04-19",
"endsAt": null,
"createdAt": "2025-08-10T21:01:43.782Z"
}