{"ok":true,"tool":"CSS Minifier","operation":"minify-css","description":"Minify CSS by removing comments, whitespace, and unnecessary separators.","method":"POST","endpoint":"/api/css-minifier","webUrl":"https://ultraquick.tools/tools/css-minifier","parameters":{"type":"object","properties":{"css":{"type":"string","description":"The CSS to minify"}},"required":["css"]},"response":{"type":"object","properties":{"minified":{"type":"string"},"originalLength":{"type":"number"},"minifiedLength":{"type":"number"},"saved":{"type":"number"},"savedPercent":{"type":"number"}}},"example":{"request":{"css":".box {\n  color: red;\n}"},"response_shape":{"type":"object","properties":{"minified":{"type":"string"},"originalLength":{"type":"number"},"minifiedLength":{"type":"number"},"saved":{"type":"number"},"savedPercent":{"type":"number"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/css-minifier. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  css (string, required) — The CSS to minify","curlExample":"curl -X POST https://ultraquick.tools/api/css-minifier -H \"Content-Type: application/json\" -d '{\"css\":\".box {\\n  color: red;\\n}\"}'"}