Transportation
- userId
-
Myrl Pollich @myrl.pollich
- name
- Transportation
- categoryId
- —
- amount
- 3200.65
- period
- quarterly
- spent
- 48.93
- currency
- CAD
- startsAt
- 2025-11-25
- endsAt
- 2026-02-23
- createdAt
Overview
budgets / #92
Transportation
#92
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/92" ); 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/92"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/92"
)
budget = res.json() Response
{
"id": 92,
"userId": 90,
"name": "Transportation",
"categoryId": null,
"amount": 3200.65,
"period": "quarterly",
"spent": 48.93,
"currency": "CAD",
"startsAt": "2025-11-25",
"endsAt": "2026-02-23",
"createdAt": "2026-01-30T17:53:27.525Z"
}