budgets / #29
- userId
-
Cassidy Christiansen @cassidy_christiansen38
- name
- Travel
- categoryId
- 1
- amount
- 2003.62
- period
- yearly
- spent
- 1837.92
- currency
- GBP
- startsAt
- 2024-12-26
- endsAt
- 2025-12-26
- createdAt
Component variants
Medium
Travel
#29
Small
budgets/29 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/29"
);
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/29"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/29"
)
budget = res.json() {
"id": 29,
"userId": 33,
"name": "Travel",
"categoryId": 1,
"amount": 2003.62,
"period": "yearly",
"spent": 1837.92,
"currency": "GBP",
"startsAt": "2024-12-26",
"endsAt": "2025-12-26",
"createdAt": "2026-02-24T19:46:35.178Z"
}