Healthcare
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Healthcare
- categoryId
- —
- amount
- 905.54
- period
- yearly
- spent
- 877.35
- currency
- EUR
- startsAt
- 2026-05-09
- endsAt
- 2027-05-09
- createdAt
Overview
budgets / #109
Healthcare
#109
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/109" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/109" ); 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/109"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/109"
)
budget = res.json() Response
{
"id": 109,
"userId": 103,
"name": "Healthcare",
"categoryId": null,
"amount": 905.54,
"period": "yearly",
"spent": 877.35,
"currency": "EUR",
"startsAt": "2026-05-09",
"endsAt": "2027-05-09",
"createdAt": "2026-05-13T07:24:19.304Z"
}