budgets / #176
- userId
-
Fatima Dicki @fatima_dicki
- name
- Personal Care
- categoryId
- —
- amount
- 461.25
- period
- weekly
- spent
- 549.47
- currency
- CAD
- startsAt
- 2024-08-05
- endsAt
- 2024-08-12
- createdAt
Component variants
Medium
Personal Care
#176
Small
budgets/176 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/176" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/176"
);
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/176"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/176"
)
budget = res.json() {
"id": 176,
"userId": 176,
"name": "Personal Care",
"categoryId": null,
"amount": 461.25,
"period": "weekly",
"spent": 549.47,
"currency": "CAD",
"startsAt": "2024-08-05",
"endsAt": "2024-08-12",
"createdAt": "2025-04-03T18:08:00.617Z"
}