example-data.com

budgets

budgets

Page 9 of 10.

userId
Selina Flatley @selina_flatley
name
Utilities
categoryId
amount
1229.23
period
weekly
spent
441.59
currency
EUR
startsAt
2025-06-14
endsAt
createdAt
userId
Oliver Mitchell @oliver_mitchell50
name
Pet Expenses
categoryId
34
amount
873.72
period
quarterly
spent
646.62
currency
GBP
startsAt
2026-05-21
endsAt
createdAt
userId
Oliver Mitchell @oliver_mitchell50
name
Entertainment
categoryId
12
amount
1281.24
period
monthly
spent
1518.47
currency
CAD
startsAt
2026-02-06
endsAt
createdAt
userId
Maryam Kunze @maryam_kunze
name
Gifts
categoryId
amount
991.61
period
monthly
spent
339.63
currency
AUD
startsAt
2024-11-27
endsAt
createdAt
userId
Joseph Nitzsche @joseph_nitzsche
name
Gifts
categoryId
amount
593.93
period
weekly
spent
436.1
currency
AUD
startsAt
2025-12-28
endsAt
2026-01-04
createdAt
userId
Tabitha Ruecker @tabitha.ruecker
name
Fitness
categoryId
amount
4904.42
period
monthly
spent
796.12
currency
USD
startsAt
2026-05-21
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": 193,
      "userId": 193,
      "name": "Utilities",
      "categoryId": null,
      "amount": 1229.23,
      "period": "weekly",
      "spent": 441.59,
      "currency": "EUR",
      "startsAt": "2025-06-14",
      "endsAt": null,
      "createdAt": "2025-08-30T01:11:59.513Z"
    },
    {
      "id": 194,
      "userId": 194,
      "name": "Pet Expenses",
      "categoryId": 34,
      "amount": 873.72,
      "period": "quarterly",
      "spent": 646.62,
      "currency": "GBP",
      "startsAt": "2026-05-21",
      "endsAt": null,
      "createdAt": "2026-05-21T21:31:10.482Z"
    },
    {
      "id": 195,
      "userId": 194,
      "name": "Entertainment",
      "categoryId": 12,
      "amount": 1281.24,
      "period": "monthly",
      "spent": 1518.47,
      "currency": "CAD",
      "startsAt": "2026-02-06",
      "endsAt": null,
      "createdAt": "2026-04-21T00:38:50.553Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=9",
    "next": "/api/v1/budgets?page=10",
    "prev": "/api/v1/budgets?page=8"
  }
}
Draftbit