Dining Out
- userId
-
Izaiah Rempel @izaiah_rempel
- name
- Dining Out
- categoryId
- Team Sports
- amount
- 1737.63
- period
- monthly
- spent
- 568.66
- currency
- CAD
- startsAt
- 2024-08-12
- endsAt
- —
- createdAt
Overview
budgets / #27
Dining Out
#27
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/27" ); 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/27"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/27"
)
budget = res.json() Response
{
"id": 27,
"userId": 31,
"name": "Dining Out",
"categoryId": 23,
"amount": 1737.63,
"period": "monthly",
"spent": 568.66,
"currency": "CAD",
"startsAt": "2024-08-12",
"endsAt": null,
"createdAt": "2025-09-07T00:24:17.477Z"
}