Pet Expenses
- userId
-
Oliver Mitchell @oliver_mitchell50
- name
- Pet Expenses
- categoryId
- Board Games
- amount
- 873.72
- period
- quarterly
- spent
- 646.62
- currency
- GBP
- startsAt
- 2026-05-21
- endsAt
- —
- createdAt
Overview
budgets / #194
Pet Expenses
#194
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/194" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/194" ); 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/194"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/194"
)
budget = res.json() Response
{
"id": 194,
"userId": 194,
"name": "Pet Expenses",
"categoryId": 34,
"amount": 873.72,
"period": "quarterly",
"spent": 646.62,
"currency": "GBP",
"startsAt": "2026-05-21",
"endsAt": null,
"createdAt": "2026-05-21T21:31:10.482Z"
}