{"ok":true,"tool":"Cooking Converter","operation":"convert-cooking","description":"Convert a cooking volume between cups, tablespoons, teaspoons, ml, fl oz, pints, quarts, liters and gallons.","method":"POST","endpoint":"/api/cooking-converter","webUrl":"https://ultraquick.tools/tools/cooking-converter","parameters":{"type":"object","properties":{"value":{"type":"number","description":"The quantity to convert"},"from":{"type":"string","enum":["ml","teaspoon","tablespoon","floz","cup","pint","quart","liter","gallon"],"description":"Source unit"},"to":{"type":"string","enum":["ml","teaspoon","tablespoon","floz","cup","pint","quart","liter","gallon"],"description":"Target unit"}},"required":["value","from","to"]},"response":{"type":"object","properties":{"result":{"type":"number"},"ml":{"type":"number"},"units":{"type":"object"}}},"example":{"request":{"value":1,"from":"cup","to":"ml"},"response_shape":{"type":"object","properties":{"result":{"type":"number"},"ml":{"type":"number"},"units":{"type":"object"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/cooking-converter. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  value (number, required) — The quantity to convert\n  from (string, required, one of: ml|teaspoon|tablespoon|floz|cup|pint|quart|liter|gallon) — Source unit\n  to (string, required, one of: ml|teaspoon|tablespoon|floz|cup|pint|quart|liter|gallon) — Target unit","curlExample":"curl -X POST https://ultraquick.tools/api/cooking-converter -H \"Content-Type: application/json\" -d '{\"value\":1,\"from\":\"cup\",\"to\":\"ml\"}'"}