budgets / #197
- userId
-
Joseph Nitzsche @joseph_nitzsche
- name
- Gifts
- categoryId
- —
- amount
- 593.93
- period
- weekly
- spent
- 436.1
- currency
- AUD
- startsAt
- 2025-12-28
- endsAt
- 2026-01-04
- createdAt
Component variants
Medium
Gifts
#197
Small
budgets/197 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/197"
);
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/197"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/197"
)
budget = res.json() {
"id": 197,
"userId": 196,
"name": "Gifts",
"categoryId": null,
"amount": 593.93,
"period": "weekly",
"spent": 436.1,
"currency": "AUD",
"startsAt": "2025-12-28",
"endsAt": "2026-01-04",
"createdAt": "2026-05-09T15:33:46.878Z"
}