example-data.com

budgets / #148

userId
Sheridan Turcotte @sheridan.turcotte
name
Personal Care
categoryId
amount
2196.15
period
weekly
spent
1599.37
currency
GBP
startsAt
2026-04-05
endsAt
2026-04-12
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/148"
)
budget = res.json()
{
  "id": 148,
  "userId": 153,
  "name": "Personal Care",
  "categoryId": null,
  "amount": 2196.15,
  "period": "weekly",
  "spent": 1599.37,
  "currency": "GBP",
  "startsAt": "2026-04-05",
  "endsAt": "2026-04-12",
  "createdAt": "2026-04-18T17:26:46.147Z"
}
Draftbit