REST API serving hardware store product and pricing data
GET /api/products — Paginated products with filtering & sortingGET /api/products/{id} — Single product by IDGET /api/products/categories — All product categoriesGET /api/prices — Paginated prices with date, amount, and product filtersGET /api/prices/{id} — Single price by IDGET /api/unit-of-measures — All units of measureGET /api/stats — Dataset summary (counts, date ranges, categories)GET /api/health — API health check# Get first 5 products
curl https://api.casestudy.enterbridge.com/api/products?pageSize=5
# Get prices for product 1, starting from 2023
curl "https://api.casestudy.enterbridge.com/api/prices?productId=1&startDate=2023-01-01"
# Get dataset overview
curl https://api.casestudy.enterbridge.com/api/stats
# Filter products by category
curl "https://api.casestudy.enterbridge.com/api/products?category=Lumber&sortBy=name"