budgets / #131
- userId
-
Maximus Bosco @maximus_bosco
- name
- Electronics
- categoryId
- 7
- amount
- 4516.77
- period
- yearly
- spent
- 140.24
- currency
- GBP
- startsAt
- 2025-07-20
- endsAt
- 2026-07-20
- createdAt
Component variants
Medium
Electronics
#131
Small
budgets/131 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/131" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/131"
);
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/131"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/131"
)
budget = res.json() {
"id": 131,
"userId": 128,
"name": "Electronics",
"categoryId": 7,
"amount": 4516.77,
"period": "yearly",
"spent": 140.24,
"currency": "GBP",
"startsAt": "2025-07-20",
"endsAt": "2026-07-20",
"createdAt": "2026-01-05T08:27:04.704Z"
}