example-data.com

budgets / #150

userId
Brad Wisoky @brad.wisoky41
name
Savings Goal
categoryId
2
amount
3613.56
period
quarterly
spent
3370.2
currency
USD
startsAt
2025-05-30
endsAt
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/150"
)
budget = res.json()
{
  "id": 150,
  "userId": 154,
  "name": "Savings Goal",
  "categoryId": 2,
  "amount": 3613.56,
  "period": "quarterly",
  "spent": 3370.2,
  "currency": "USD",
  "startsAt": "2025-05-30",
  "endsAt": null,
  "createdAt": "2025-09-10T18:12:18.812Z"
}
Draftbit