budgets / #31
- userId
-
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
- name
- Education
- categoryId
- 32
- amount
- 2152.99
- period
- monthly
- spent
- 2011.82
- currency
- EUR
- startsAt
- 2025-03-12
- endsAt
- —
- createdAt
Component variants
Medium
Education
#31
Small
budgets/31 Related
curl -sS \
"https://example-data.com/api/v1/budgets/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/31"
);
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/31"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/31"
)
budget = res.json() {
"id": 31,
"userId": 35,
"name": "Education",
"categoryId": 32,
"amount": 2152.99,
"period": "monthly",
"spent": 2011.82,
"currency": "EUR",
"startsAt": "2025-03-12",
"endsAt": null,
"createdAt": "2025-11-20T02:21:29.075Z"
}