budgets / #186
- userId
-
General Morissette @general_morissette47
- name
- Entertainment
- categoryId
- 11
- amount
- 2309.11
- period
- weekly
- spent
- 1601.6
- currency
- CAD
- startsAt
- 2024-06-10
- endsAt
- 2024-06-17
- createdAt
Component variants
Medium
Entertainment
#186
Small
budgets/186 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/186" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/186"
);
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/186"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/186"
)
budget = res.json() {
"id": 186,
"userId": 184,
"name": "Entertainment",
"categoryId": 11,
"amount": 2309.11,
"period": "weekly",
"spent": 1601.6,
"currency": "CAD",
"startsAt": "2024-06-10",
"endsAt": "2024-06-17",
"createdAt": "2024-08-22T04:30:03.368Z"
}