Education
- userId
-
Abdul Rau @abdul.rau
- name
- Education
- categoryId
- Non-Fiction
- amount
- 857.19
- period
- yearly
- spent
- 873.03
- currency
- CAD
- startsAt
- 2025-02-13
- endsAt
- —
- createdAt
Overview
budgets / #114
Education
#114
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/114" ); 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/114"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/114"
)
budget = res.json() Response
{
"id": 114,
"userId": 108,
"name": "Education",
"categoryId": 25,
"amount": 857.19,
"period": "yearly",
"spent": 873.03,
"currency": "CAD",
"startsAt": "2025-02-13",
"endsAt": null,
"createdAt": "2026-01-28T20:08:22.844Z"
}