{"ok":true,"tool":"HTML to Text Converter","operation":"convert-html-to-text","description":"Strip HTML tags and return clean plain text.","method":"POST","endpoint":"/api/html-to-text","webUrl":"https://ultraquick.tools/tools/html-to-text","parameters":{"type":"object","properties":{"html":{"type":"string","description":"The HTML to convert"},"preserveLineBreaks":{"type":"boolean","description":"Insert line breaks for block elements (default true)"}},"required":["html"]},"response":{"type":"object","properties":{"text":{"type":"string"},"length":{"type":"number"}}},"example":{"request":{"html":"<p>Hello <b>world</b></p>"},"response_shape":{"type":"object","properties":{"text":{"type":"string"},"length":{"type":"number"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/html-to-text. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  html (string, required) — The HTML to convert\n  preserveLineBreaks (boolean, optional) — Insert line breaks for block elements (default true)","curlExample":"curl -X POST https://ultraquick.tools/api/html-to-text -H \"Content-Type: application/json\" -d '{\"html\":\"<p>Hello <b>world</b></p>\"}'"}