example-data.com

budgets / #110

userId
Rosina Larkin @rosina.larkin75
name
Healthcare
categoryId
7
amount
1398.5
period
quarterly
spent
1191.36
currency
USD
startsAt
2025-05-17
endsAt
2025-08-15
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/budgets/110"
)
budget = res.json()
{
  "id": 110,
  "userId": 103,
  "name": "Healthcare",
  "categoryId": 7,
  "amount": 1398.5,
  "period": "quarterly",
  "spent": 1191.36,
  "currency": "USD",
  "startsAt": "2025-05-17",
  "endsAt": "2025-08-15",
  "createdAt": "2025-06-16T15:05:18.937Z"
}
Draftbit