example-data.com

budgets

budgets

Page 3 of 10.

userId
Jolie Abernathy @jolie_abernathy33
name
Utilities
categoryId
amount
1377.71
period
weekly
spent
538.53
currency
USD
startsAt
2025-11-08
endsAt
2025-11-15
createdAt
userId
Jolie Abernathy @jolie_abernathy33
name
Healthcare
categoryId
21
amount
292.86
period
weekly
spent
130.49
currency
AUD
startsAt
2025-12-28
endsAt
createdAt
userId
Hermina West @hermina.west3
name
Transportation
categoryId
amount
4847.79
period
weekly
spent
2212.85
currency
GBP
startsAt
2024-10-23
endsAt
createdAt
userId
Hermina West @hermina.west3
name
Transportation
categoryId
5
amount
1895.74
period
weekly
spent
1914.67
currency
GBP
startsAt
2025-03-06
endsAt
createdAt
userId
Samson Stroman @samson_stroman
name
Education
categoryId
24
amount
1943.6
period
monthly
spent
1545.48
currency
CAD
startsAt
2026-04-28
endsAt
createdAt
userId
Jo Haag-Mayer @jo_haag-mayer
name
Healthcare
categoryId
amount
2479.75
period
quarterly
spent
2475.38
currency
AUD
startsAt
2026-04-24
endsAt
2026-07-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": 49,
      "userId": 50,
      "name": "Utilities",
      "categoryId": null,
      "amount": 1377.71,
      "period": "weekly",
      "spent": 538.53,
      "currency": "USD",
      "startsAt": "2025-11-08",
      "endsAt": "2025-11-15",
      "createdAt": "2026-03-04T06:19:54.961Z"
    },
    {
      "id": 50,
      "userId": 50,
      "name": "Healthcare",
      "categoryId": 21,
      "amount": 292.86,
      "period": "weekly",
      "spent": 130.49,
      "currency": "AUD",
      "startsAt": "2025-12-28",
      "endsAt": null,
      "createdAt": "2026-04-20T11:45:30.077Z"
    },
    {
      "id": 51,
      "userId": 51,
      "name": "Transportation",
      "categoryId": null,
      "amount": 4847.79,
      "period": "weekly",
      "spent": 2212.85,
      "currency": "GBP",
      "startsAt": "2024-10-23",
      "endsAt": null,
      "createdAt": "2025-09-27T02:45:39.399Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=3",
    "next": "/api/v1/budgets?page=4",
    "prev": "/api/v1/budgets?page=2"
  }
}
Draftbit