example-data.com

budgets

budgets

Page 10 of 10.

userId
Roma Durgan @roma.durgan
name
Gifts
categoryId
amount
1068.19
period
monthly
spent
381.42
currency
EUR
startsAt
2025-12-15
endsAt
createdAt
userId
Joseph Steuber @joseph_steuber
name
Healthcare
categoryId
amount
248.39
period
monthly
spent
275.47
currency
USD
startsAt
2025-03-20
endsAt
2025-04-19
createdAt
userId
Loren Schmidt @loren_schmidt
name
Groceries
categoryId
amount
3188.29
period
monthly
spent
1051.58
currency
CAD
startsAt
2024-10-23
endsAt
2024-11-22
createdAt
userId
Lilly Rosenbaum @lilly.rosenbaum
name
Travel
categoryId
24
amount
1580.59
period
weekly
spent
934.39
currency
EUR
startsAt
2025-01-27
endsAt
2025-02-03
createdAt
userId
Simeon Heathcote @simeon_heathcote75
name
Personal Care
categoryId
9
amount
4590.58
period
quarterly
spent
22.63
currency
USD
startsAt
2025-02-28
endsAt
2025-05-29
createdAt
userId
Rubye Emmerich @rubye.emmerich
name
Savings Goal
categoryId
amount
855.98
period
monthly
spent
6.02
currency
GBP
startsAt
2025-09-23
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": 217,
      "userId": 215,
      "name": "Gifts",
      "categoryId": null,
      "amount": 1068.19,
      "period": "monthly",
      "spent": 381.42,
      "currency": "EUR",
      "startsAt": "2025-12-15",
      "endsAt": null,
      "createdAt": "2026-02-19T19:01:09.592Z"
    },
    {
      "id": 218,
      "userId": 221,
      "name": "Healthcare",
      "categoryId": null,
      "amount": 248.39,
      "period": "monthly",
      "spent": 275.47,
      "currency": "USD",
      "startsAt": "2025-03-20",
      "endsAt": "2025-04-19",
      "createdAt": "2025-03-22T05:06:02.485Z"
    },
    {
      "id": 219,
      "userId": 222,
      "name": "Groceries",
      "categoryId": null,
      "amount": 3188.29,
      "period": "monthly",
      "spent": 1051.58,
      "currency": "CAD",
      "startsAt": "2024-10-23",
      "endsAt": "2024-11-22",
      "createdAt": "2025-01-15T08:33:02.831Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=10",
    "next": "/api/v1/budgets?page=11",
    "prev": "/api/v1/budgets?page=9"
  }
}
Draftbit