Personal Care
- userId
-
Ari Howe @ari.howe73
- name
- Personal Care
- categoryId
- —
- amount
- 3697.2
- period
- monthly
- spent
- 853.3
- currency
- CAD
- startsAt
- 2025-08-29
- endsAt
- —
- createdAt
Overview
budgets / #164
Personal Care
#164
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/164" ); 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/164"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/164"
)
budget = res.json() Response
{
"id": 164,
"userId": 167,
"name": "Personal Care",
"categoryId": null,
"amount": 3697.2,
"period": "monthly",
"spent": 853.3,
"currency": "CAD",
"startsAt": "2025-08-29",
"endsAt": null,
"createdAt": "2026-04-08T07:28:24.322Z"
}