example-data.com

budgets

budgets

Browse 250 budgets records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
name
Groceries
categoryId
18
amount
4245.1
period
quarterly
spent
156.23
currency
EUR
startsAt
2024-12-03
endsAt
createdAt
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
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
userId
Webster Skiles @webster_skiles39
name
Transportation
categoryId
5
amount
3901.97
period
monthly
spent
3813.38
currency
EUR
startsAt
2024-09-15
endsAt
createdAt
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
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.

curl -sS \
  "https://example-data.com/api/v1/budgets?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = await res.json();
import type { Budget, ListEnvelope } from "https://example-data.com/types/budgets.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/budgets",
    params={"limit": 25},
)
data = res.json()
{
  "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 →

Draftbit