budgets / #102
- userId
-
Esperanza Casper @esperanza_casper
- name
- Groceries
- categoryId
- 9
- amount
- 2589.13
- period
- monthly
- spent
- 2720.22
- currency
- EUR
- startsAt
- 2025-08-22
- endsAt
- 2025-09-21
- createdAt
Component variants
Medium
Groceries
#102
Small
budgets/102 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/102"
);
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/102"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/102"
)
budget = res.json() {
"id": 102,
"userId": 97,
"name": "Groceries",
"categoryId": 9,
"amount": 2589.13,
"period": "monthly",
"spent": 2720.22,
"currency": "EUR",
"startsAt": "2025-08-22",
"endsAt": "2025-09-21",
"createdAt": "2026-02-04T07:13:14.445Z"
}