Utilities
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- name
- Utilities
- categoryId
- Hair Care
- amount
- 1953
- period
- quarterly
- spent
- 2134.11
- currency
- GBP
- startsAt
- 2024-08-31
- endsAt
- —
- createdAt
Overview
budgets / #35
Utilities
#35
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/35" ); 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/35"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/35"
)
budget = res.json() Response
{
"id": 35,
"userId": 40,
"name": "Utilities",
"categoryId": 28,
"amount": 1953,
"period": "quarterly",
"spent": 2134.11,
"currency": "GBP",
"startsAt": "2024-08-31",
"endsAt": null,
"createdAt": "2025-11-25T06:15:21.990Z"
}