budgets / #119
- userId
-
Eveline Emard @eveline.emard
- name
- Transportation
- categoryId
- —
- amount
- 3995.42
- period
- monthly
- spent
- 2390.13
- currency
- USD
- startsAt
- 2025-06-24
- endsAt
- —
- createdAt
Component variants
Medium
Transportation
#119
Small
budgets/119 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/119"
);
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/119"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/119"
)
budget = res.json() {
"id": 119,
"userId": 118,
"name": "Transportation",
"categoryId": null,
"amount": 3995.42,
"period": "monthly",
"spent": 2390.13,
"currency": "USD",
"startsAt": "2025-06-24",
"endsAt": null,
"createdAt": "2025-11-26T18:56:35.905Z"
}