Home Improvement
- userId
-
Brad Wisoky @brad.wisoky41
- name
- Home Improvement
- categoryId
- —
- amount
- 1745.6
- period
- monthly
- spent
- 780.13
- currency
- GBP
- startsAt
- 2025-04-12
- endsAt
- —
- createdAt
Overview
budgets / #151
Home Improvement
#151
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/151" ); 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/151"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/151"
)
budget = res.json() Response
{
"id": 151,
"userId": 154,
"name": "Home Improvement",
"categoryId": null,
"amount": 1745.6,
"period": "monthly",
"spent": 780.13,
"currency": "GBP",
"startsAt": "2025-04-12",
"endsAt": null,
"createdAt": "2025-12-21T10:00:27.451Z"
}