budgets / #96
- userId
-
Velma Jerde @velma.jerde56
- name
- Groceries
- categoryId
- 19
- amount
- 4456.38
- period
- weekly
- spent
- 3698.17
- currency
- GBP
- startsAt
- 2025-08-19
- endsAt
- 2025-08-26
- createdAt
Component variants
Medium
Groceries
#96
Small
budgets/96 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/96"
);
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/96"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/96"
)
budget = res.json() {
"id": 96,
"userId": 93,
"name": "Groceries",
"categoryId": 19,
"amount": 4456.38,
"period": "weekly",
"spent": 3698.17,
"currency": "GBP",
"startsAt": "2025-08-19",
"endsAt": "2025-08-26",
"createdAt": "2025-09-11T23:26:51.673Z"
}