Fitness
- userId
-
Roosevelt Ullrich @roosevelt.ullrich75
- name
- Fitness
- categoryId
- Beverages
- amount
- 2839.63
- period
- monthly
- spent
- 412.7
- currency
- EUR
- startsAt
- 2026-02-10
- endsAt
- 2026-03-12
- createdAt
Overview
budgets / #237
Fitness
#237
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/237" ); 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/237"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/237"
)
budget = res.json() Response
{
"id": 237,
"userId": 237,
"name": "Fitness",
"categoryId": 32,
"amount": 2839.63,
"period": "monthly",
"spent": 412.7,
"currency": "EUR",
"startsAt": "2026-02-10",
"endsAt": "2026-03-12",
"createdAt": "2026-03-10T19:37:45.274Z"
}