Utilities
- userId
-
Jolie Abernathy @jolie_abernathy33
- name
- Utilities
- categoryId
- —
- amount
- 1377.71
- period
- weekly
- spent
- 538.53
- currency
- USD
- startsAt
- 2025-11-08
- endsAt
- 2025-11-15
- createdAt
Overview
budgets / #49
Utilities
#49
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/49" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/49" ); 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/49"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/49"
)
budget = res.json() Response
{
"id": 49,
"userId": 50,
"name": "Utilities",
"categoryId": null,
"amount": 1377.71,
"period": "weekly",
"spent": 538.53,
"currency": "USD",
"startsAt": "2025-11-08",
"endsAt": "2025-11-15",
"createdAt": "2026-03-04T06:19:54.961Z"
}