{"message":"Product Management API","version":"1.0.0","endpoints":{"GET /products":"List all products (supports filtering and sorting)","GET /products/:id":"Get a specific product by ID","GET /products/category/:category":"Get products by category","POST /products":"Create a new product","PUT /products/:id":"Update a product (full replacement)","PATCH /products/:id":"Update a product (partial update)","DELETE /products/:id":"Delete a product","GET /uuid":"Generate a single UUID v4","GET /uuid/batch":"Generate multiple UUID v4 values","GET /id":"Generate a single opaque ID","GET /id/batch":"Generate multiple opaque IDs","GET /number":"Generate a single random integer","GET /number/batch":"Generate multiple random integers","GET /time":"Get the current time in multiple timestamp-friendly formats","GET /time/:format":"Get the current time in a specific format"},"queryParams":{"/products":{"minPrice":"Filter by minimum price","maxPrice":"Filter by maximum price","sortBy":"Sort by field (name, price, stock, category)"},"/uuid/batch":{"count":"Number of UUIDs to generate (optional, default 10, max 1000)"},"/id/batch":{"count":"Number of IDs to generate (optional, default 10, max 1000)"},"/number":{"min":"Minimum integer value (optional, default 0)","max":"Maximum integer value (optional, default 1000000)"},"/number/batch":{"count":"Number of integers to generate (optional, default 10, max 1000)","min":"Minimum integer value (optional, default 0)","max":"Maximum integer value (optional, default 1000000)"},"/time":{"timezone":"IANA timezone (optional, default UTC). Example: America/Sao_Paulo","offsetValue":"Signed integer offset from now (optional, default 0)","offsetUnit":"Offset unit: milliseconds, seconds, minutes, hours, days (optional, default seconds)","format":"Optional single format. Examples: unix-seconds, unix-milliseconds, iso-8601, http-date"},"/time/:format":{"timezone":"IANA timezone (optional, default UTC). Example: America/Sao_Paulo","offsetValue":"Signed integer offset from now (optional, default 0)","offsetUnit":"Offset unit: milliseconds, seconds, minutes, hours, days (optional, default seconds)","formatExamples":"unix-seconds, unix-milliseconds, unix-microseconds, iso-8601, iso-8601-zoned, http-date, date, time, time-with-milliseconds, date-time, compact, filename-safe"}}}