example-data.com

budgets / #160

userId
Clementine Nicolas @clementine_nicolas
name
Personal Care
categoryId
amount
3711.13
period
monthly
spent
146.68
currency
EUR
startsAt
2026-04-14
endsAt
2026-05-14
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/160"
)
budget = res.json()
{
  "id": 160,
  "userId": 164,
  "name": "Personal Care",
  "categoryId": null,
  "amount": 3711.13,
  "period": "monthly",
  "spent": 146.68,
  "currency": "EUR",
  "startsAt": "2026-04-14",
  "endsAt": "2026-05-14",
  "createdAt": "2026-04-24T12:13:37.600Z"
}
Draftbit