budgets / #192
- userId
-
Selina Flatley @selina_flatley
- name
- Clothing
- categoryId
- 4
- amount
- 3031.49
- period
- monthly
- spent
- 3337.72
- currency
- EUR
- startsAt
- 2025-12-04
- endsAt
- 2026-01-03
- createdAt
Component variants
Medium
Clothing
#192
Small
budgets/192 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/192" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/192"
);
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/192"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/192"
)
budget = res.json() {
"id": 192,
"userId": 193,
"name": "Clothing",
"categoryId": 4,
"amount": 3031.49,
"period": "monthly",
"spent": 3337.72,
"currency": "EUR",
"startsAt": "2025-12-04",
"endsAt": "2026-01-03",
"createdAt": "2025-12-05T09:38:23.454Z"
}