example-data.com
Menu
Browse docs and collections

budgets

budgets

Browse 250 budgets records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Transportation

userId
Charlene Roberts @charlene_roberts
name
Transportation
categoryId
amount
347.57
period
quarterly
spent
107.79
currency
AUD
startsAt
2026-03-27
endsAt
2026-06-25
createdAt

Savings Goal

userId
Conner Bernhard @conner.bernhard33
name
Savings Goal
categoryId
amount
1574.95
period
quarterly
spent
241.29
currency
GBP
startsAt
2025-12-05
endsAt
2026-03-05
createdAt

Entertainment

userId
Brycen Bayer @brycen_bayer60
name
Entertainment
categoryId
amount
903.05
period
weekly
spent
910.52
currency
EUR
startsAt
2026-02-24
endsAt
2026-03-03
createdAt

Electronics

userId
Anne Hamill @anne_hamill75
name
Electronics
categoryId
amount
914.98
period
yearly
spent
994.09
currency
USD
startsAt
2025-04-30
endsAt
createdAt

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/budgets?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/budgets";

const res = await fetch(
  "https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Budget>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/budgets",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 1,
      "userId": 1,
      "name": "Groceries",
      "categoryId": 18,
      "amount": 4245.1,
      "period": "quarterly",
      "spent": 156.23,
      "currency": "EUR",
      "startsAt": "2024-12-03",
      "endsAt": null,
      "createdAt": "2025-12-09T19:44:56.377Z"
    },
    {
      "id": 2,
      "userId": 1,
      "name": "Transportation",
      "categoryId": null,
      "amount": 347.57,
      "period": "quarterly",
      "spent": 107.79,
      "currency": "AUD",
      "startsAt": "2026-03-27",
      "endsAt": "2026-06-25",
      "createdAt": "2026-04-15T09:14:02.081Z"
    },
    {
      "id": 3,
      "userId": 3,
      "name": "Savings Goal",
      "categoryId": null,
      "amount": 1574.95,
      "period": "quarterly",
      "spent": 241.29,
      "currency": "GBP",
      "startsAt": "2025-12-05",
      "endsAt": "2026-03-05",
      "createdAt": "2026-03-22T05:29:25.384Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 250,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/budgets?page=1",
    "first": "/api/v1/budgets?page=1",
    "last": "/api/v1/budgets?page=10",
    "next": "/api/v1/budgets?page=2",
    "prev": null
  }
}

View full response →