budgets / #171
- userId
-
Kaleb Schmidt @kaleb.schmidt
- name
- Travel
- categoryId
- —
- amount
- 3217.69
- period
- yearly
- spent
- 1123.48
- currency
- USD
- startsAt
- 2025-11-23
- endsAt
- 2026-11-23
- createdAt
Component variants
Medium
Travel
#171
Small
budgets/171 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/171" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/171"
);
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/171"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/171"
)
budget = res.json() {
"id": 171,
"userId": 171,
"name": "Travel",
"categoryId": null,
"amount": 3217.69,
"period": "yearly",
"spent": 1123.48,
"currency": "USD",
"startsAt": "2025-11-23",
"endsAt": "2026-11-23",
"createdAt": "2026-04-03T17:32:04.451Z"
}