example-data.com

budgets / #49

userId
Jolie Abernathy @jolie_abernathy33
name
Utilities
categoryId
amount
1377.71
period
weekly
spent
538.53
currency
USD
startsAt
2025-11-08
endsAt
2025-11-15
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/49"
)
budget = res.json()
{
  "id": 49,
  "userId": 50,
  "name": "Utilities",
  "categoryId": null,
  "amount": 1377.71,
  "period": "weekly",
  "spent": 538.53,
  "currency": "USD",
  "startsAt": "2025-11-08",
  "endsAt": "2025-11-15",
  "createdAt": "2026-03-04T06:19:54.961Z"
}
Draftbit