Healthcare
- userId
-
Jo Haag-Mayer @jo_haag-mayer
- name
- Healthcare
- categoryId
- —
- amount
- 2479.75
- period
- quarterly
- spent
- 2475.38
- currency
- AUD
- startsAt
- 2026-04-24
- endsAt
- 2026-07-23
- createdAt
Overview
budgets / #54
Healthcare
#54
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/54" ); 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/54"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/54"
)
budget = res.json() Response
{
"id": 54,
"userId": 54,
"name": "Healthcare",
"categoryId": null,
"amount": 2479.75,
"period": "quarterly",
"spent": 2475.38,
"currency": "AUD",
"startsAt": "2026-04-24",
"endsAt": "2026-07-23",
"createdAt": "2026-05-18T18:08:49.762Z"
}