example-data.com

budgets / #93

userId
Ruben Terry @ruben.terry
name
Groceries
categoryId
16
amount
4920.34
period
weekly
spent
2999.99
currency
USD
startsAt
2024-11-02
endsAt
2024-11-09
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/93"
)
budget = res.json()
{
  "id": 93,
  "userId": 91,
  "name": "Groceries",
  "categoryId": 16,
  "amount": 4920.34,
  "period": "weekly",
  "spent": 2999.99,
  "currency": "USD",
  "startsAt": "2024-11-02",
  "endsAt": "2024-11-09",
  "createdAt": "2025-06-14T08:29:59.733Z"
}
Draftbit