budgets / #17
- userId
-
Ericka DuBuque @ericka.dubuque
- name
- Gifts
- categoryId
- —
- amount
- 1244.53
- period
- quarterly
- spent
- 929.97
- currency
- AUD
- startsAt
- 2025-10-01
- endsAt
- —
- createdAt
Component variants
Medium
Gifts
#17
Small
budgets/17 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/17"
);
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/17"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/17"
)
budget = res.json() {
"id": 17,
"userId": 23,
"name": "Gifts",
"categoryId": null,
"amount": 1244.53,
"period": "quarterly",
"spent": 929.97,
"currency": "AUD",
"startsAt": "2025-10-01",
"endsAt": null,
"createdAt": "2026-01-26T05:02:02.681Z"
}