budgets
budgets
Page 3 of 10.
-
Utilities
#49
-
Healthcare
#50
-
Transportation
#51
-
Transportation
#52
-
Education
#53
-
Healthcare
#54
-
Entertainment
#55
-
Personal Care
#56
-
Entertainment
#57
-
Dining Out
#58
-
Savings Goal
#59
-
Education
#60
-
Fitness
#61
-
Subscriptions
#62
-
Subscriptions
#63
-
Entertainment
#64
-
Office Supplies
#65
-
Pet Expenses
#66
-
Electronics
#67
-
Groceries
#68
-
Travel
#69
-
Travel
#70
-
Healthcare
#71
-
Savings Goal
#72
- 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"
}
}