Dining Out
- userId
-
Jameson Considine @jameson.considine1
- name
- Dining Out
- categoryId
- Electronics
- amount
- 4731.57
- period
- quarterly
- spent
- 5589.55
- currency
- CAD
- startsAt
- 2026-05-10
- endsAt
- —
- createdAt
Overview
budgets / #235
Dining Out
#235
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/235" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/235" ); 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/235"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/235"
)
budget = res.json() Response
{
"id": 235,
"userId": 236,
"name": "Dining Out",
"categoryId": 1,
"amount": 4731.57,
"period": "quarterly",
"spent": 5589.55,
"currency": "CAD",
"startsAt": "2026-05-10",
"endsAt": null,
"createdAt": "2026-05-20T20:52:07.895Z"
}