budgets / #164
- userId
-
Ari Howe @ari.howe73
- name
- Personal Care
- categoryId
- —
- amount
- 3697.2
- period
- monthly
- spent
- 853.3
- currency
- CAD
- startsAt
- 2025-08-29
- endsAt
- —
- createdAt
Component variants
Medium
Personal Care
#164
Small
budgets/164 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/164"
);
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/164"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/164"
)
budget = res.json() {
"id": 164,
"userId": 167,
"name": "Personal Care",
"categoryId": null,
"amount": 3697.2,
"period": "monthly",
"spent": 853.3,
"currency": "CAD",
"startsAt": "2025-08-29",
"endsAt": null,
"createdAt": "2026-04-08T07:28:24.322Z"
}