Savings Goal
- userId
-
Brad Wisoky @brad.wisoky41
- name
- Savings Goal
- categoryId
- Clothing & Apparel
- amount
- 3613.56
- period
- quarterly
- spent
- 3370.2
- currency
- USD
- startsAt
- 2025-05-30
- endsAt
- —
- createdAt
Overview
budgets / #150
Savings Goal
#150
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/150" ); 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/150"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/150"
)
budget = res.json() Response
{
"id": 150,
"userId": 154,
"name": "Savings Goal",
"categoryId": 2,
"amount": 3613.56,
"period": "quarterly",
"spent": 3370.2,
"currency": "USD",
"startsAt": "2025-05-30",
"endsAt": null,
"createdAt": "2025-09-10T18:12:18.812Z"
}