example-data.com

budgets / #124

userId
Telly Sanford @telly.sanford
name
Healthcare
categoryId
amount
2026.78
period
quarterly
spent
1327.99
currency
EUR
startsAt
2026-05-21
endsAt
2026-08-19
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/124"
)
budget = res.json()
{
  "id": 124,
  "userId": 123,
  "name": "Healthcare",
  "categoryId": null,
  "amount": 2026.78,
  "period": "quarterly",
  "spent": 1327.99,
  "currency": "EUR",
  "startsAt": "2026-05-21",
  "endsAt": "2026-08-19",
  "createdAt": "2026-05-21T19:14:53.448Z"
}
Draftbit