Gifts
- userId
-
Lavonne Schmidt @lavonne.schmidt95
- name
- Gifts
- categoryId
- Non-Fiction
- amount
- 1445.47
- period
- weekly
- spent
- 1665.54
- currency
- AUD
- startsAt
- 2025-03-06
- endsAt
- —
- createdAt
Overview
budgets / #190
Gifts
#190
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/190" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/190" ); 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/190"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/190"
)
budget = res.json() Response
{
"id": 190,
"userId": 192,
"name": "Gifts",
"categoryId": 25,
"amount": 1445.47,
"period": "weekly",
"spent": 1665.54,
"currency": "AUD",
"startsAt": "2025-03-06",
"endsAt": null,
"createdAt": "2026-02-23T04:24:17.262Z"
}