budgets / #227
- userId
-
Wallace Batz @wallace_batz
- name
- Electronics
- categoryId
- 30
- amount
- 3328.35
- period
- yearly
- spent
- 2605
- currency
- GBP
- startsAt
- 2025-06-21
- endsAt
- 2026-06-21
- createdAt
Component variants
Medium
Electronics
#227
Small
budgets/227 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/227" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/227"
);
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/227"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/227"
)
budget = res.json() {
"id": 227,
"userId": 229,
"name": "Electronics",
"categoryId": 30,
"amount": 3328.35,
"period": "yearly",
"spent": 2605,
"currency": "GBP",
"startsAt": "2025-06-21",
"endsAt": "2026-06-21",
"createdAt": "2026-02-20T08:15:32.488Z"
}