budgets
budgets
Page 6 of 11.
Overview
-
Gifts
#121
-
Clothing
#122
-
Fitness
#123
-
Healthcare
#124
-
Subscriptions
#125
-
Clothing
#126
-
Gifts
#127
-
Groceries
#128
-
Pet Expenses
#129
-
Utilities
#130
-
Electronics
#131
-
Entertainment
#132
-
Utilities
#133
-
Entertainment
#134
-
Savings Goal
#135
-
Entertainment
#136
-
Education
#137
-
Transportation
#138
-
Fitness
#139
-
Entertainment
#140
-
Gifts
#141
-
Groceries
#142
-
Fitness
#143
-
Healthcare
#144
Request
curl example
curl -sS \ "https://example-data.com/api/v1/budgets?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/budgets.d.ts https://example-data.com/types/budgets.d.ts
import type { Budget, ListEnvelope } from "./types/budgets";
const res = await fetch(
"https://example-data.com/api/v1/budgets?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Budget>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/budgets",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/budgets?page=1&limit=24",
"last": "/api/v1/budgets?page=11&limit=24",
"next": "/api/v1/budgets?page=7&limit=24",
"prev": "/api/v1/budgets?page=5&limit=24"
}
}