budgets
budgets
Page 5 of 10.
-
Travel
#97
-
Gifts
#98
-
Clothing
#99
-
Pet Expenses
#100
-
Pet Expenses
#101
-
Groceries
#102
-
Healthcare
#103
-
Transportation
#104
-
Pet Expenses
#105
-
Office Supplies
#106
-
Office Supplies
#107
-
Electronics
#108
-
Healthcare
#109
-
Healthcare
#110
-
Office Supplies
#111
-
Entertainment
#112
-
Fitness
#113
-
Education
#114
-
Healthcare
#115
-
Fitness
#116
-
Utilities
#117
-
Electronics
#118
-
Transportation
#119
-
Fitness
#120
- userId
-
Camron O'Conner @camron.oconner54
- name
- Travel
- categoryId
- —
- amount
- 1020.68
- period
- weekly
- spent
- 565.55
- currency
- AUD
- startsAt
- 2026-02-05
- endsAt
- —
- createdAt
- userId
-
Camron O'Conner @camron.oconner54
- name
- Gifts
- categoryId
- 34
- amount
- 1053.01
- period
- quarterly
- spent
- 325.55
- currency
- EUR
- startsAt
- 2025-08-29
- endsAt
- —
- createdAt
- userId
-
Ethyl Auer @ethyl_auer89
- name
- Clothing
- categoryId
- 39
- amount
- 923.86
- period
- monthly
- spent
- 147.62
- currency
- USD
- startsAt
- 2024-09-27
- endsAt
- 2024-10-27
- createdAt
- userId
-
Matilde Beahan @matilde_beahan
- name
- Pet Expenses
- categoryId
- 28
- amount
- 3278.91
- period
- quarterly
- spent
- 1781.3
- currency
- EUR
- startsAt
- 2025-06-19
- endsAt
- —
- createdAt
- userId
-
Esperanza Casper @esperanza_casper
- name
- Pet Expenses
- categoryId
- —
- amount
- 1053.65
- period
- quarterly
- spent
- 840.99
- currency
- CAD
- startsAt
- 2025-06-20
- endsAt
- 2025-09-18
- createdAt
- userId
-
Esperanza Casper @esperanza_casper
- name
- Groceries
- categoryId
- 9
- amount
- 2589.13
- period
- monthly
- spent
- 2720.22
- currency
- EUR
- startsAt
- 2025-08-22
- endsAt
- 2025-09-21
- 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": 97,
"userId": 94,
"name": "Travel",
"categoryId": null,
"amount": 1020.68,
"period": "weekly",
"spent": 565.55,
"currency": "AUD",
"startsAt": "2026-02-05",
"endsAt": null,
"createdAt": "2026-05-01T02:59:08.438Z"
},
{
"id": 98,
"userId": 94,
"name": "Gifts",
"categoryId": 34,
"amount": 1053.01,
"period": "quarterly",
"spent": 325.55,
"currency": "EUR",
"startsAt": "2025-08-29",
"endsAt": null,
"createdAt": "2026-02-10T23:29:40.997Z"
},
{
"id": 99,
"userId": 95,
"name": "Clothing",
"categoryId": 39,
"amount": 923.86,
"period": "monthly",
"spent": 147.62,
"currency": "USD",
"startsAt": "2024-09-27",
"endsAt": "2024-10-27",
"createdAt": "2025-04-19T06:23:55.710Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/budgets?page=5",
"next": "/api/v1/budgets?page=6",
"prev": "/api/v1/budgets?page=4"
}
}