budgets
budgets
Page 7 of 10.
-
Entertainment
#145
-
Education
#146
-
Clothing
#147
-
Personal Care
#148
-
Dining Out
#149
-
Savings Goal
#150
-
Home Improvement
#151
-
Clothing
#152
-
Subscriptions
#153
-
Gifts
#154
-
Utilities
#155
-
Travel
#156
-
Travel
#157
-
Pet Expenses
#158
-
Fitness
#159
-
Personal Care
#160
-
Gifts
#161
-
Clothing
#162
-
Travel
#163
-
Personal Care
#164
-
Groceries
#165
-
Healthcare
#166
-
Education
#167
-
Fitness
#168
- userId
-
Fritz Skiles @fritz_skiles
- name
- Entertainment
- categoryId
- 32
- amount
- 3562.41
- period
- quarterly
- spent
- 686.14
- currency
- GBP
- startsAt
- 2025-03-08
- endsAt
- 2025-06-06
- createdAt
- userId
-
Tillman Breitenberg @tillman_breitenberg54
- name
- Education
- categoryId
- 1
- amount
- 127.4
- period
- weekly
- spent
- 66.45
- currency
- CAD
- startsAt
- 2025-10-27
- endsAt
- 2025-11-03
- createdAt
- userId
-
Jacynthe Sawayn @jacynthe_sawayn71
- name
- Clothing
- categoryId
- —
- amount
- 2587.82
- period
- weekly
- spent
- 2968.4
- currency
- EUR
- startsAt
- 2025-07-23
- endsAt
- 2025-07-30
- createdAt
- userId
-
Sheridan Turcotte @sheridan.turcotte
- name
- Personal Care
- categoryId
- —
- amount
- 2196.15
- period
- weekly
- spent
- 1599.37
- currency
- GBP
- startsAt
- 2026-04-05
- endsAt
- 2026-04-12
- createdAt
- userId
-
Sheridan Turcotte @sheridan.turcotte
- name
- Dining Out
- categoryId
- —
- amount
- 1940.48
- period
- quarterly
- spent
- 107.7
- currency
- AUD
- startsAt
- 2025-06-28
- endsAt
- 2025-09-26
- createdAt
- userId
-
Brad Wisoky @brad.wisoky41
- name
- Savings Goal
- categoryId
- 2
- amount
- 3613.56
- period
- quarterly
- spent
- 3370.2
- currency
- USD
- startsAt
- 2025-05-30
- 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": 145,
"userId": 144,
"name": "Entertainment",
"categoryId": 32,
"amount": 3562.41,
"period": "quarterly",
"spent": 686.14,
"currency": "GBP",
"startsAt": "2025-03-08",
"endsAt": "2025-06-06",
"createdAt": "2025-09-29T21:19:48.212Z"
},
{
"id": 146,
"userId": 145,
"name": "Education",
"categoryId": 1,
"amount": 127.4,
"period": "weekly",
"spent": 66.45,
"currency": "CAD",
"startsAt": "2025-10-27",
"endsAt": "2025-11-03",
"createdAt": "2025-12-11T01:35:17.024Z"
},
{
"id": 147,
"userId": 146,
"name": "Clothing",
"categoryId": null,
"amount": 2587.82,
"period": "weekly",
"spent": 2968.4,
"currency": "EUR",
"startsAt": "2025-07-23",
"endsAt": "2025-07-30",
"createdAt": "2026-02-07T19:17:56.070Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/budgets?page=7",
"next": "/api/v1/budgets?page=8",
"prev": "/api/v1/budgets?page=6"
}
}