budgets / #168
- userId
-
Alexander Beahan @alexander.beahan57
- name
- Fitness
- categoryId
- —
- amount
- 156.03
- period
- monthly
- spent
- 153.11
- currency
- GBP
- startsAt
- 2025-09-02
- endsAt
- 2025-10-02
- createdAt
Component variants
Medium
Fitness
#168
Small
budgets/168 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/168"
);
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/168"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/168"
)
budget = res.json() {
"id": 168,
"userId": 169,
"name": "Fitness",
"categoryId": null,
"amount": 156.03,
"period": "monthly",
"spent": 153.11,
"currency": "GBP",
"startsAt": "2025-09-02",
"endsAt": "2025-10-02",
"createdAt": "2025-10-03T21:22:30.099Z"
}