example-data.com

budgets

budgets

Page 2 of 10.

userId
Conrad Connelly @conrad.connelly22
name
Pet Expenses
categoryId
amount
2515.17
period
yearly
spent
579.19
currency
CAD
startsAt
2025-07-11
endsAt
createdAt
userId
Conrad Connelly @conrad.connelly22
name
Travel
categoryId
9
amount
1401.32
period
monthly
spent
908.62
currency
AUD
startsAt
2024-09-17
endsAt
createdAt
userId
Izaiah Rempel @izaiah_rempel
name
Dining Out
categoryId
23
amount
1737.63
period
monthly
spent
568.66
currency
CAD
startsAt
2024-08-12
endsAt
createdAt
userId
Cassidy Christiansen @cassidy_christiansen38
name
Home Improvement
categoryId
6
amount
3622.42
period
monthly
spent
2460.02
currency
AUD
startsAt
2024-10-31
endsAt
2024-11-30
createdAt
userId
Cassidy Christiansen @cassidy_christiansen38
name
Travel
categoryId
1
amount
2003.62
period
yearly
spent
1837.92
currency
GBP
startsAt
2024-12-26
endsAt
2025-12-26
createdAt
userId
Koby Pouros @koby_pouros60
name
Fitness
categoryId
19
amount
2239.94
period
yearly
spent
2190.22
currency
GBP
startsAt
2025-03-08
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": 25,
      "userId": 30,
      "name": "Pet Expenses",
      "categoryId": null,
      "amount": 2515.17,
      "period": "yearly",
      "spent": 579.19,
      "currency": "CAD",
      "startsAt": "2025-07-11",
      "endsAt": null,
      "createdAt": "2025-09-11T20:08:11.711Z"
    },
    {
      "id": 26,
      "userId": 30,
      "name": "Travel",
      "categoryId": 9,
      "amount": 1401.32,
      "period": "monthly",
      "spent": 908.62,
      "currency": "AUD",
      "startsAt": "2024-09-17",
      "endsAt": null,
      "createdAt": "2024-10-22T19:26:36.490Z"
    },
    {
      "id": 27,
      "userId": 31,
      "name": "Dining Out",
      "categoryId": 23,
      "amount": 1737.63,
      "period": "monthly",
      "spent": 568.66,
      "currency": "CAD",
      "startsAt": "2024-08-12",
      "endsAt": null,
      "createdAt": "2025-09-07T00:24:17.477Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=2",
    "next": "/api/v1/budgets?page=3",
    "prev": "/api/v1/budgets?page=1"
  }
}
Draftbit