example-data.com

budgets / #235

userId
Jameson Considine @jameson.considine1
name
Dining Out
categoryId
1
amount
4731.57
period
quarterly
spent
5589.55
currency
CAD
startsAt
2026-05-10
endsAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/235"
)
budget = res.json()
{
  "id": 235,
  "userId": 236,
  "name": "Dining Out",
  "categoryId": 1,
  "amount": 4731.57,
  "period": "quarterly",
  "spent": 5589.55,
  "currency": "CAD",
  "startsAt": "2026-05-10",
  "endsAt": null,
  "createdAt": "2026-05-20T20:52:07.895Z"
}
Draftbit