example-data.com

budgets / #237

userId
Roosevelt Ullrich @roosevelt.ullrich75
name
Fitness
categoryId
32
amount
2839.63
period
monthly
spent
412.7
currency
EUR
startsAt
2026-02-10
endsAt
2026-03-12
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/237"
)
budget = res.json()
{
  "id": 237,
  "userId": 237,
  "name": "Fitness",
  "categoryId": 32,
  "amount": 2839.63,
  "period": "monthly",
  "spent": 412.7,
  "currency": "EUR",
  "startsAt": "2026-02-10",
  "endsAt": "2026-03-12",
  "createdAt": "2026-03-10T19:37:45.274Z"
}
Draftbit