example-data.com
Menu
Browse docs and collections

Overview

budgets / #12

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/budgets/12" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/budgets/12"
);
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/12"
);
const budget = (await res.json()) as Budget;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/budgets/12"
)
budget = res.json()

Response

{
  "id": 12,
  "userId": 17,
  "name": "Savings Goal",
  "categoryId": 29,
  "amount": 4085.24,
  "period": "quarterly",
  "spent": 2644.89,
  "currency": "USD",
  "startsAt": "2025-04-21",
  "endsAt": null,
  "createdAt": "2025-12-11T18:11:29.566Z"
}