example-data.com

budgets / #203

userId
Mathilde Ziemann-Nienow @mathilde.ziemann-nienow6
name
Healthcare
categoryId
amount
4912.88
period
yearly
spent
3085.24
currency
GBP
startsAt
2025-11-21
endsAt
2026-11-21
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/203"
)
budget = res.json()
{
  "id": 203,
  "userId": 202,
  "name": "Healthcare",
  "categoryId": null,
  "amount": 4912.88,
  "period": "yearly",
  "spent": 3085.24,
  "currency": "GBP",
  "startsAt": "2025-11-21",
  "endsAt": "2026-11-21",
  "createdAt": "2026-02-23T13:53:39.788Z"
}
Draftbit