Utilities
- userId
-
Minerva Hettinger @minerva_hettinger
- name
- Utilities
- categoryId
- —
- amount
- 1686.13
- period
- quarterly
- spent
- 657.34
- currency
- CAD
- startsAt
- 2026-04-24
- endsAt
- 2026-07-23
- createdAt
Overview
budgets / #184
Utilities
#184
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/184" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/184" ); const budget = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/budgets.d.ts https://example-data.com/types/budgets.d.ts
import type { Budget } from "./types/budgets";
const res = await fetch(
"https://example-data.com/api/v1/budgets/184"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/184"
)
budget = res.json() Response
{
"id": 184,
"userId": 183,
"name": "Utilities",
"categoryId": null,
"amount": 1686.13,
"period": "quarterly",
"spent": 657.34,
"currency": "CAD",
"startsAt": "2026-04-24",
"endsAt": "2026-07-23",
"createdAt": "2026-05-15T07:55:38.954Z"
}