Gifts
- userId
-
Camron O'Conner @camron.oconner54
- name
- Gifts
- categoryId
- Board Games
- amount
- 1053.01
- period
- quarterly
- spent
- 325.55
- currency
- EUR
- startsAt
- 2025-08-29
- endsAt
- —
- createdAt
Overview
budgets / #98
Gifts
#98
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/98" ); 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/98"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/98"
)
budget = res.json() Response
{
"id": 98,
"userId": 94,
"name": "Gifts",
"categoryId": 34,
"amount": 1053.01,
"period": "quarterly",
"spent": 325.55,
"currency": "EUR",
"startsAt": "2025-08-29",
"endsAt": null,
"createdAt": "2026-02-10T23:29:40.997Z"
}