{"ok":true,"tool":"Slug Generator","operation":"generate-slug","description":"Generate a URL-friendly slug from text.","method":"POST","endpoint":"/api/slug-generator","webUrl":"https://ultraquick.tools/tools/slug-generator","parameters":{"type":"object","properties":{"text":{"type":"string","description":"Text to convert to a slug"},"separator":{"type":"string","enum":["-","_"],"description":"Separator character (default -)"}},"required":["text"]},"response":{"type":"object","properties":{"slug":{"type":"string"},"separator":{"type":"string"}}},"example":{"request":{"text":"Hello World! This is a test.","separator":"-"},"response_shape":{"type":"object","properties":{"slug":{"type":"string"},"separator":{"type":"string"}}}},"howToCall":"POST a JSON body to https://ultraquick.tools/api/slug-generator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  text (string, required) — Text to convert to a slug\n  separator (string, optional, one of: -|_) — Separator character (default -)","curlExample":"curl -X POST https://ultraquick.tools/api/slug-generator -H \"Content-Type: application/json\" -d '{\"text\":\"Hello World! This is a test.\",\"separator\":\"-\"}'"}