example-data.com

budgets

budgets

Page 6 of 10.

userId
Lennie Dickinson @lennie_dickinson8
name
Gifts
categoryId
26
amount
2804.65
period
yearly
spent
2333.41
currency
USD
startsAt
2026-05-03
endsAt
createdAt
userId
Lennie Dickinson @lennie_dickinson8
name
Clothing
categoryId
amount
233.49
period
quarterly
spent
275.9
currency
EUR
startsAt
2026-05-02
endsAt
createdAt
userId
Nikko Kuhlman @nikko_kuhlman
name
Fitness
categoryId
12
amount
2837.25
period
monthly
spent
698.99
currency
AUD
startsAt
2026-03-16
endsAt
createdAt
userId
Telly Sanford @telly.sanford
name
Healthcare
categoryId
amount
2026.78
period
quarterly
spent
1327.99
currency
EUR
startsAt
2026-05-21
endsAt
2026-08-19
createdAt
userId
Telly Sanford @telly.sanford
name
Subscriptions
categoryId
amount
1427.32
period
monthly
spent
1023.02
currency
EUR
startsAt
2024-11-01
endsAt
2024-12-01
createdAt
userId
Diana Murazik @diana.murazik31
name
Clothing
categoryId
10
amount
1092.96
period
weekly
spent
948.03
currency
AUD
startsAt
2025-06-19
endsAt
2025-06-26
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": 121,
      "userId": 121,
      "name": "Gifts",
      "categoryId": 26,
      "amount": 2804.65,
      "period": "yearly",
      "spent": 2333.41,
      "currency": "USD",
      "startsAt": "2026-05-03",
      "endsAt": null,
      "createdAt": "2026-05-07T16:25:13.754Z"
    },
    {
      "id": 122,
      "userId": 121,
      "name": "Clothing",
      "categoryId": null,
      "amount": 233.49,
      "period": "quarterly",
      "spent": 275.9,
      "currency": "EUR",
      "startsAt": "2026-05-02",
      "endsAt": null,
      "createdAt": "2026-05-06T10:33:35.939Z"
    },
    {
      "id": 123,
      "userId": 122,
      "name": "Fitness",
      "categoryId": 12,
      "amount": 2837.25,
      "period": "monthly",
      "spent": 698.99,
      "currency": "AUD",
      "startsAt": "2026-03-16",
      "endsAt": null,
      "createdAt": "2026-04-30T17:49:56.324Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/budgets?page=6",
    "next": "/api/v1/budgets?page=7",
    "prev": "/api/v1/budgets?page=5"
  }
}
Draftbit