example-data.com

budgets / #95

userId
Velma Jerde @velma.jerde56
name
Home Improvement
categoryId
amount
1194.6
period
monthly
spent
1167.44
currency
CAD
startsAt
2026-05-13
endsAt
2026-06-12
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/95"
)
budget = res.json()
{
  "id": 95,
  "userId": 93,
  "name": "Home Improvement",
  "categoryId": null,
  "amount": 1194.6,
  "period": "monthly",
  "spent": 1167.44,
  "currency": "CAD",
  "startsAt": "2026-05-13",
  "endsAt": "2026-06-12",
  "createdAt": "2026-05-18T18:48:28.864Z"
}
Draftbit