Groceries
- userId
-
Ruben Terry @ruben.terry
- name
- Groceries
- categoryId
- Women's Clothing
- amount
- 4920.34
- period
- weekly
- spent
- 2999.99
- currency
- USD
- startsAt
- 2024-11-02
- endsAt
- 2024-11-09
- createdAt
Overview
budgets / #93
Groceries
#93
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/budgets/93" ); 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/93"
);
const budget = (await res.json()) as Budget; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets/93"
)
budget = res.json() Response
{
"id": 93,
"userId": 91,
"name": "Groceries",
"categoryId": 16,
"amount": 4920.34,
"period": "weekly",
"spent": 2999.99,
"currency": "USD",
"startsAt": "2024-11-02",
"endsAt": "2024-11-09",
"createdAt": "2025-06-14T08:29:59.733Z"
}