Transportation
- userId
-
Jamaal Rolfson @jamaal_rolfson
- name
- Transportation
- categoryId
- Office & Business
- amount
- 2878.29
- period
- monthly
- spent
- 1835.39
- currency
- AUD
- startsAt
- 2026-02-01
- endsAt
- 2026-03-03
- createdAt
Overview
budgets / #207
Transportation
#207
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/207" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/207" ); 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/207"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/207"
)
budget = res.json() Response
{
"id": 207,
"userId": 207,
"name": "Transportation",
"categoryId": 10,
"amount": 2878.29,
"period": "monthly",
"spent": 1835.39,
"currency": "AUD",
"startsAt": "2026-02-01",
"endsAt": "2026-03-03",
"createdAt": "2026-04-25T13:56:23.593Z"
}