budgets / #175
- userId
-
Aylin Sanford @aylin.sanford
- name
- Subscriptions
- categoryId
- 32
- amount
- 4916.46
- period
- weekly
- spent
- 248.14
- currency
- CAD
- startsAt
- 2025-08-06
- endsAt
- —
- createdAt
Component variants
Medium
Subscriptions
#175
Small
budgets/175 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/175" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/175"
);
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/175"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/175"
)
budget = res.json() {
"id": 175,
"userId": 173,
"name": "Subscriptions",
"categoryId": 32,
"amount": 4916.46,
"period": "weekly",
"spent": 248.14,
"currency": "CAD",
"startsAt": "2025-08-06",
"endsAt": null,
"createdAt": "2025-09-20T19:38:51.203Z"
}