budgets
budgets
Browse 250 budgets records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.
Overview
Cards
-
Groceries
#1
-
Transportation
#2
-
Savings Goal
#3
-
Transportation
#4
-
Entertainment
#5
-
Electronics
#6
-
Electronics
#7
-
Subscriptions
#8
-
Office Supplies
#9
-
Groceries
#10
-
Healthcare
#11
-
Savings Goal
#12
-
Dining Out
#13
-
Office Supplies
#14
-
Home Improvement
#15
-
Home Improvement
#16
-
Gifts
#17
-
Electronics
#18
-
Entertainment
#19
-
Fitness
#20
-
Dining Out
#21
-
Gifts
#22
-
Clothing
#23
-
Personal Care
#24
Compact
Detailed
Groceries
- userId
-
Charlene Roberts @charlene_roberts
- name
- Groceries
- categoryId
- Furniture
- amount
- 4245.1
- period
- quarterly
- spent
- 156.23
- currency
- EUR
- startsAt
- 2024-12-03
- endsAt
- —
- createdAt
Transportation
- userId
-
Charlene Roberts @charlene_roberts
- name
- Transportation
- categoryId
- —
- amount
- 347.57
- period
- quarterly
- spent
- 107.79
- currency
- AUD
- startsAt
- 2026-03-27
- endsAt
- 2026-06-25
- createdAt
Savings Goal
- userId
-
Conner Bernhard @conner.bernhard33
- name
- Savings Goal
- categoryId
- —
- amount
- 1574.95
- period
- quarterly
- spent
- 241.29
- currency
- GBP
- startsAt
- 2025-12-05
- endsAt
- 2026-03-05
- createdAt
Transportation
- userId
-
Webster Skiles @webster_skiles39
- name
- Transportation
- categoryId
- Books & Media
- amount
- 3901.97
- period
- monthly
- spent
- 3813.38
- currency
- EUR
- startsAt
- 2024-09-15
- endsAt
- —
- createdAt
Entertainment
- userId
-
Brycen Bayer @brycen_bayer60
- name
- Entertainment
- categoryId
- —
- amount
- 903.05
- period
- weekly
- spent
- 910.52
- currency
- EUR
- startsAt
- 2026-02-24
- endsAt
- 2026-03-03
- createdAt
Electronics
- userId
-
Anne Hamill @anne_hamill75
- name
- Electronics
- categoryId
- —
- amount
- 914.98
- period
- yearly
- spent
- 994.09
- currency
- USD
- startsAt
- 2025-04-30
- endsAt
- —
- createdAt
Showing first 6 of 24 on this page.
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": 1,
"userId": 1,
"name": "Groceries",
"categoryId": 18,
"amount": 4245.1,
"period": "quarterly",
"spent": 156.23,
"currency": "EUR",
"startsAt": "2024-12-03",
"endsAt": null,
"createdAt": "2025-12-09T19:44:56.377Z"
},
{
"id": 2,
"userId": 1,
"name": "Transportation",
"categoryId": null,
"amount": 347.57,
"period": "quarterly",
"spent": 107.79,
"currency": "AUD",
"startsAt": "2026-03-27",
"endsAt": "2026-06-25",
"createdAt": "2026-04-15T09:14:02.081Z"
},
{
"id": 3,
"userId": 3,
"name": "Savings Goal",
"categoryId": null,
"amount": 1574.95,
"period": "quarterly",
"spent": 241.29,
"currency": "GBP",
"startsAt": "2025-12-05",
"endsAt": "2026-03-05",
"createdAt": "2026-03-22T05:29:25.384Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 250,
"totalPages": 10
},
"links": {
"self": "/api/v1/budgets?page=1",
"first": "/api/v1/budgets?page=1",
"last": "/api/v1/budgets?page=10",
"next": "/api/v1/budgets?page=2",
"prev": null
}
}