Healthcare
- userId
-
Rosina Larkin @rosina.larkin75
- name
- Healthcare
- categoryId
- Food & Grocery
- amount
- 1398.5
- period
- quarterly
- spent
- 1191.36
- currency
- USD
- startsAt
- 2025-05-17
- endsAt
- 2025-08-15
- createdAt
Overview
budgets / #110
Healthcare
#110
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/110" ); 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/110"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/110"
)
budget = res.json() Response
{
"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"
}