{"ok":true,"tool":"SQL Formatter","operation":"format-sql","description":"Format and beautify a SQL query.","method":"POST","endpoint":"/api/sql-formatter","webUrl":"https://ultraquick.tools/tools/sql-formatter","parameters":{"type":"object","properties":{"sql":{"type":"string","description":"The SQL to format"},"indent":{"type":"number","description":"Indentation width in spaces (default 2)"}},"required":["sql"]},"response":{"type":"object","properties":{"formatted":{"type":"string"}}},"example":{"request":{"sql":"select id, name from users where active = 1 order by name"},"response_shape":{"type":"object","properties":{"formatted":{"type":"string"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/sql-formatter. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  sql (string, required) — The SQL to format\n  indent (number, optional) — Indentation width in spaces (default 2)","curlExample":"curl -X POST https://ultraquick.tools/api/sql-formatter -H \"Content-Type: application/json\" -d '{\"sql\":\"select id, name from users where active = 1 order by name\"}'"}