{"ok":true,"tool":"QR Code Generator","operation":"generate-qr","description":"Generate a QR code as an SVG string for the given text or URL.","method":"POST","endpoint":"/api/qr-code-generator","webUrl":"https://ultraquick.tools/tools/qr-code-generator","parameters":{"type":"object","properties":{"text":{"type":"string","description":"Content to encode (URL, text, etc.)"},"size":{"type":"integer","minimum":64,"maximum":1024,"default":256,"description":"Output size in pixels"}},"required":["text"]},"response":{"type":"object","properties":{"svg":{"type":"string","description":"QR code as an SVG image"},"size":{"type":"integer"}}},"example":{"request":{"text":"https://ultraquick.tools","size":256},"response_shape":{"type":"object","properties":{"svg":{"type":"string","description":"QR code as an SVG image"},"size":{"type":"integer"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/qr-code-generator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  text (string, required) — Content to encode (URL, text, etc.)\n  size (integer, optional) — Output size in pixels","curlExample":"curl -X POST https://ultraquick.tools/api/qr-code-generator -H \"Content-Type: application/json\" -d '{\"text\":\"https://ultraquick.tools\",\"size\":256}'"}