example-data.com

budgets / #109

userId
Rosina Larkin @rosina.larkin75
name
Healthcare
categoryId
amount
905.54
period
yearly
spent
877.35
currency
EUR
startsAt
2026-05-09
endsAt
2027-05-09
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/109"
)
budget = res.json()
{
  "id": 109,
  "userId": 103,
  "name": "Healthcare",
  "categoryId": null,
  "amount": 905.54,
  "period": "yearly",
  "spent": 877.35,
  "currency": "EUR",
  "startsAt": "2026-05-09",
  "endsAt": "2027-05-09",
  "createdAt": "2026-05-13T07:24:19.304Z"
}
Draftbit