budgets
budgets
Page 8 of 10.
-
Utilities
#169
-
Utilities
#170
-
Travel
#171
-
Pet Expenses
#172
-
Subscriptions
#173
-
Fitness
#174
-
Subscriptions
#175
-
Personal Care
#176
-
Groceries
#177
-
Gifts
#178
-
Personal Care
#179
-
Healthcare
#180
-
Travel
#181
-
Savings Goal
#182
-
Groceries
#183
-
Utilities
#184
-
Pet Expenses
#185
-
Entertainment
#186
-
Electronics
#187
-
Education
#188
-
Electronics
#189
-
Gifts
#190
-
Groceries
#191
-
Clothing
#192
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Utilities
- categoryId
- 34
- amount
- 3982.9
- period
- weekly
- spent
- 1341.37
- currency
- GBP
- startsAt
- 2025-12-06
- endsAt
- 2025-12-13
- createdAt
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- name
- Utilities
- categoryId
- 24
- amount
- 3783.63
- period
- yearly
- spent
- 4046.45
- currency
- GBP
- startsAt
- 2025-04-28
- endsAt
- 2026-04-28
- createdAt
- userId
-
Kaleb Schmidt @kaleb.schmidt
- name
- Travel
- categoryId
- —
- amount
- 3217.69
- period
- yearly
- spent
- 1123.48
- currency
- USD
- startsAt
- 2025-11-23
- endsAt
- 2026-11-23
- createdAt
- userId
-
Kaleb Schmidt @kaleb.schmidt
- name
- Pet Expenses
- categoryId
- —
- amount
- 1626.92
- period
- monthly
- spent
- 1077.82
- currency
- CAD
- startsAt
- 2026-03-06
- endsAt
- 2026-04-05
- createdAt
- userId
-
Daisy Kuhic @daisy_kuhic24
- name
- Subscriptions
- categoryId
- 2
- amount
- 2913.47
- period
- quarterly
- spent
- 1758.45
- currency
- GBP
- startsAt
- 2025-03-14
- endsAt
- —
- createdAt
- userId
-
Aylin Sanford @aylin.sanford
- name
- Fitness
- categoryId
- —
- amount
- 4018.08
- period
- quarterly
- spent
- 728.4
- currency
- CAD
- startsAt
- 2026-01-03
- endsAt
- 2026-04-03
- 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": 169,
"userId": 170,
"name": "Utilities",
"categoryId": 34,
"amount": 3982.9,
"period": "weekly",
"spent": 1341.37,
"currency": "GBP",
"startsAt": "2025-12-06",
"endsAt": "2025-12-13",
"createdAt": "2026-01-18T16:44:24.863Z"
},
{
"id": 170,
"userId": 170,
"name": "Utilities",
"categoryId": 24,
"amount": 3783.63,
"period": "yearly",
"spent": 4046.45,
"currency": "GBP",
"startsAt": "2025-04-28",
"endsAt": "2026-04-28",
"createdAt": "2026-04-22T02:07:41.298Z"
},
{
"id": 171,
"userId": 171,
"name": "Travel",
"categoryId": null,
"amount": 3217.69,
"period": "yearly",
"spent": 1123.48,
"currency": "USD",
"startsAt": "2025-11-23",
"endsAt": "2026-11-23",
"createdAt": "2026-04-03T17:32:04.451Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/budgets?page=8",
"next": "/api/v1/budgets?page=9",
"prev": "/api/v1/budgets?page=7"
}
}