example-data.com

budgets

budgets

Page 4 of 10.

userId
Ike Breitenberg @ike.breitenberg
name
Travel
categoryId
amount
2083.17
period
yearly
spent
1738.25
currency
EUR
startsAt
2026-05-04
endsAt
2027-05-04
createdAt
userId
Ike Breitenberg @ike.breitenberg
name
Subscriptions
categoryId
amount
290.67
period
monthly
spent
236.24
currency
CAD
startsAt
2025-08-15
endsAt
2025-09-14
createdAt
userId
Terence Lemke @terence.lemke85
name
Dining Out
categoryId
3
amount
204.59
period
yearly
spent
70.24
currency
USD
startsAt
2025-01-22
endsAt
createdAt
userId
Candace Mueller @candace.mueller
name
Savings Goal
categoryId
14
amount
4344.58
period
yearly
spent
3919.59
currency
USD
startsAt
2025-06-21
endsAt
createdAt
userId
Jesse Kiehn @jesse_kiehn92
name
Utilities
categoryId
amount
3754.17
period
weekly
spent
4205.47
currency
AUD
startsAt
2024-05-22
endsAt
2024-05-29
createdAt
userId
Jesse Kiehn @jesse_kiehn92
name
Groceries
categoryId
amount
2223.14
period
weekly
spent
1063.17
currency
EUR
startsAt
2025-12-16
endsAt
2025-12-23
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": 73,
      "userId": 72,
      "name": "Travel",
      "categoryId": null,
      "amount": 2083.17,
      "period": "yearly",
      "spent": 1738.25,
      "currency": "EUR",
      "startsAt": "2026-05-04",
      "endsAt": "2027-05-04",
      "createdAt": "2026-05-18T07:13:11.857Z"
    },
    {
      "id": 74,
      "userId": 72,
      "name": "Subscriptions",
      "categoryId": null,
      "amount": 290.67,
      "period": "monthly",
      "spent": 236.24,
      "currency": "CAD",
      "startsAt": "2025-08-15",
      "endsAt": "2025-09-14",
      "createdAt": "2025-12-26T16:40:41.908Z"
    },
    {
      "id": 75,
      "userId": 74,
      "name": "Dining Out",
      "categoryId": 3,
      "amount": 204.59,
      "period": "yearly",
      "spent": 70.24,
      "currency": "USD",
      "startsAt": "2025-01-22",
      "endsAt": null,
      "createdAt": "2025-11-06T16:29:31.423Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=4",
    "next": "/api/v1/budgets?page=5",
    "prev": "/api/v1/budgets?page=3"
  }
}
Draftbit