{"ok":true,"tool":"Temperature Converter","operation":"convert-temperature","description":"Convert a temperature between Celsius, Fahrenheit, and Kelvin.","method":"POST","endpoint":"/api/temperature-converter","webUrl":"https://toolhub-5eo.pages.dev/tools/temperature-converter","parameters":{"type":"object","properties":{"value":{"type":"number","description":"Temperature value to convert"},"from":{"type":"string","enum":["c","f","k"],"description":"Source unit (c=Celsius, f=Fahrenheit, k=Kelvin)"},"to":{"type":"string","enum":["c","f","k"],"description":"Target unit"}},"required":["value","from","to"]},"response":{"type":"object","properties":{"result":{"type":"number"},"to":{"type":"string"}}},"example":{"request":{"value":100,"from":"c","to":"f"},"response_shape":{"type":"object","properties":{"result":{"type":"number"},"to":{"type":"string"}}}},"howToCall":"POST a JSON body to https://toolhub-5eo.pages.dev/api/temperature-converter. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  value (number, required) — Temperature value to convert\n  from (string, required, one of: c|f|k) — Source unit (c=Celsius, f=Fahrenheit, k=Kelvin)\n  to (string, required, one of: c|f|k) — Target unit","curlExample":"curl -X POST https://toolhub-5eo.pages.dev/api/temperature-converter -H \"Content-Type: application/json\" -d '{\"value\":100,\"from\":\"c\",\"to\":\"f\"}'"}