{"ok":true,"tool":"Unit Price Calculator","operation":"calculate-unit-price","description":"Compute the price per unit from a total price and quantity.","method":"POST","endpoint":"/api/unit-price-calculator","webUrl":"https://toolhub-5eo.pages.dev/tools/unit-price-calculator","parameters":{"type":"object","properties":{"price":{"type":"number","description":"Total price"},"quantity":{"type":"number","description":"Quantity (positive)"},"unit":{"type":"string","description":"Optional unit label for display"}},"required":["price","quantity"]},"response":{"type":"object","properties":{"unitPrice":{"type":"number"},"pricePerUnit":{"type":"number"}}},"example":{"request":{"price":10,"quantity":5,"unit":"kg"},"response_shape":{"type":"object","properties":{"unitPrice":{"type":"number"},"pricePerUnit":{"type":"number"}}}},"howToCall":"POST a JSON body to https://toolhub-5eo.pages.dev/api/unit-price-calculator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  price (number, required) — Total price\n  quantity (number, required) — Quantity (positive)\n  unit (string, optional) — Optional unit label for display","curlExample":"curl -X POST https://toolhub-5eo.pages.dev/api/unit-price-calculator -H \"Content-Type: application/json\" -d '{\"price\":10,\"quantity\":5,\"unit\":\"kg\"}'"}