{"ok":true,"tool":"Color Converter","operation":"convert-color","description":"Convert a color between hex, RGB, and HSL formats.","method":"POST","endpoint":"/api/color-converter","webUrl":"https://ultraquick.tools/tools/color-converter","parameters":{"type":"object","properties":{"color":{"type":"string","description":"The color value to convert (hex like #ff8000 or rgb like 255,128,0)"},"from":{"type":"string","enum":["hex","rgb"],"description":"Format of the input color"}},"required":["color","from"]},"response":{"type":"object","properties":{"hex":{"type":"string"},"rgb":{"type":"string"},"hsl":{"type":"string"},"r":{"type":"integer"},"g":{"type":"integer"},"b":{"type":"integer"}}},"example":{"request":{"color":"#ff8000","from":"hex"},"response_shape":{"type":"object","properties":{"hex":{"type":"string"},"rgb":{"type":"string"},"hsl":{"type":"string"},"r":{"type":"integer"},"g":{"type":"integer"},"b":{"type":"integer"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/color-converter. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  color (string, required) — The color value to convert (hex like #ff8000 or rgb like 255,128,0)\n  from (string, required, one of: hex|rgb) — Format of the input color","curlExample":"curl -X POST https://ultraquick.tools/api/color-converter -H \"Content-Type: application/json\" -d '{\"color\":\"#ff8000\",\"from\":\"hex\"}'"}