Savings Goal
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- name
- Savings Goal
- categoryId
- Garden & Outdoor
- amount
- 3184.08
- period
- quarterly
- spent
- 3173.12
- currency
- USD
- startsAt
- 2025-12-20
- endsAt
- —
- createdAt
Overview
budgets / #36
Savings Goal
#36
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/36" ); 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/36"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/36"
)
budget = res.json() Response
{
"id": 36,
"userId": 40,
"name": "Savings Goal",
"categoryId": 20,
"amount": 3184.08,
"period": "quarterly",
"spent": 3173.12,
"currency": "USD",
"startsAt": "2025-12-20",
"endsAt": null,
"createdAt": "2026-04-11T21:51:14.740Z"
}