budgets / #101
- userId
-
Esperanza Casper @esperanza_casper
- name
- Pet Expenses
- categoryId
- —
- amount
- 1053.65
- period
- quarterly
- spent
- 840.99
- currency
- CAD
- startsAt
- 2025-06-20
- endsAt
- 2025-09-18
- createdAt
Component variants
Medium
Pet Expenses
#101
Small
budgets/101 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/101" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/101"
);
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/101"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/101"
)
budget = res.json() {
"id": 101,
"userId": 97,
"name": "Pet Expenses",
"categoryId": null,
"amount": 1053.65,
"period": "quarterly",
"spent": 840.99,
"currency": "CAD",
"startsAt": "2025-06-20",
"endsAt": "2025-09-18",
"createdAt": "2025-11-10T20:19:21.207Z"
}