budgets / #207
- userId
-
Jamaal Rolfson @jamaal_rolfson
- name
- Transportation
- categoryId
- 10
- amount
- 2878.29
- period
- monthly
- spent
- 1835.39
- currency
- AUD
- startsAt
- 2026-02-01
- endsAt
- 2026-03-03
- createdAt
Component variants
Medium
Transportation
#207
Small
budgets/207 Related
References
curl -sS \
"https://example-data.com/api/v1/budgets/207" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/budgets/207"
);
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/207"
);
const budget = (await res.json()) as Budget;import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/207"
)
budget = res.json() {
"id": 207,
"userId": 207,
"name": "Transportation",
"categoryId": 10,
"amount": 2878.29,
"period": "monthly",
"spent": 1835.39,
"currency": "AUD",
"startsAt": "2026-02-01",
"endsAt": "2026-03-03",
"createdAt": "2026-04-25T13:56:23.593Z"
}