Utilities
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Utilities
- categoryId
- Board Games
- amount
- 3982.9
- period
- weekly
- spent
- 1341.37
- currency
- GBP
- startsAt
- 2025-12-06
- endsAt
- 2025-12-13
- createdAt
Overview
budgets / #169
Utilities
#169
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/169" ); 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/169"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/169"
)
budget = res.json() Response
{
"id": 169,
"userId": 170,
"name": "Utilities",
"categoryId": 34,
"amount": 3982.9,
"period": "weekly",
"spent": 1341.37,
"currency": "GBP",
"startsAt": "2025-12-06",
"endsAt": "2025-12-13",
"createdAt": "2026-01-18T16:44:24.863Z"
}