Personal Care
- userId
-
Mia Renner @mia.renner47
- name
- Personal Care
- categoryId
- Footwear
- amount
- 2417.46
- period
- yearly
- spent
- 2055.14
- currency
- CAD
- startsAt
- 2026-03-31
- endsAt
- —
- createdAt
Overview
budgets / #214
Personal Care
#214
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/214" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/214" ); 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/214"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/214"
)
budget = res.json() Response
{
"id": 214,
"userId": 212,
"name": "Personal Care",
"categoryId": 17,
"amount": 2417.46,
"period": "yearly",
"spent": 2055.14,
"currency": "CAD",
"startsAt": "2026-03-31",
"endsAt": null,
"createdAt": "2026-04-03T11:31:48.876Z"
}