budgets / #190
- userId
-
Lavonne Schmidt @lavonne.schmidt95
- name
- Gifts
- categoryId
- 25
- amount
- 1445.47
- period
- weekly
- spent
- 1665.54
- currency
- AUD
- startsAt
- 2025-03-06
- endsAt
- —
- createdAt
Component variants
Medium
Gifts
#190
Small
budgets/190 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/190"
);
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/190"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/190"
)
budget = res.json() {
"id": 190,
"userId": 192,
"name": "Gifts",
"categoryId": 25,
"amount": 1445.47,
"period": "weekly",
"spent": 1665.54,
"currency": "AUD",
"startsAt": "2025-03-06",
"endsAt": null,
"createdAt": "2026-02-23T04:24:17.262Z"
}