example-data.com

budgets / #184

userId
Minerva Hettinger @minerva_hettinger
name
Utilities
categoryId
amount
1686.13
period
quarterly
spent
657.34
currency
CAD
startsAt
2026-04-24
endsAt
2026-07-23
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/budgets/184" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/budgets/184"
);
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/184"
);
const budget = (await res.json()) as Budget;
import requests

res = requests.get(
    "https://example-data.com/api/v1/budgets/184"
)
budget = res.json()
{
  "id": 184,
  "userId": 183,
  "name": "Utilities",
  "categoryId": null,
  "amount": 1686.13,
  "period": "quarterly",
  "spent": 657.34,
  "currency": "CAD",
  "startsAt": "2026-04-24",
  "endsAt": "2026-07-23",
  "createdAt": "2026-05-15T07:55:38.954Z"
}
Draftbit