budgets / #200
- userId
-
Consuelo Borer @consuelo.borer
- name
- Clothing
- categoryId
- 37
- amount
- 1883.39
- period
- quarterly
- spent
- 998.58
- currency
- USD
- startsAt
- 2026-04-15
- endsAt
- 2026-07-14
- createdAt
Component variants
Medium
Clothing
#200
Small
budgets/200 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/200"
);
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/200"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/200"
)
budget = res.json() {
"id": 200,
"userId": 200,
"name": "Clothing",
"categoryId": 37,
"amount": 1883.39,
"period": "quarterly",
"spent": 998.58,
"currency": "USD",
"startsAt": "2026-04-15",
"endsAt": "2026-07-14",
"createdAt": "2026-05-12T23:12:56.829Z"
}