{"ok":true,"tool":"Case Converter","operation":"convert-case","description":"Convert text to a different case style (upper, lower, title, sentence, camel, snake, kebab).","method":"POST","endpoint":"/api/case-converter","webUrl":"https://ultraquick.tools/tools/case-converter","parameters":{"type":"object","properties":{"text":{"type":"string","description":"The text to convert"},"to":{"type":"string","enum":["upper","lower","title","sentence","camel","snake","kebab"],"description":"Target case style"}},"required":["text","to"]},"response":{"type":"object","properties":{"result":{"type":"string"}}},"example":{"request":{"text":"hello world","to":"title"},"response_shape":{"type":"object","properties":{"result":{"type":"string"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/case-converter. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  text (string, required) — The text to convert\n  to (string, required, one of: upper|lower|title|sentence|camel|snake|kebab) — Target case style","curlExample":"curl -X POST https://ultraquick.tools/api/case-converter -H \"Content-Type: application/json\" -d '{\"text\":\"hello world\",\"to\":\"title\"}'"}