{"ok":true,"tool":"Email Validator","operation":"validate-email","description":"Validate the syntax of an email address and split it into parts.","method":"POST","endpoint":"/api/email-validator","webUrl":"https://toolhub-5eo.pages.dev/tools/email-validator","parameters":{"type":"object","properties":{"email":{"type":"string","description":"The email address to validate"}},"required":["email"]},"response":{"type":"object","properties":{"email":{"type":"string"},"valid":{"type":"boolean"},"local":{"type":"string"},"domain":{"type":"string"},"hasTld":{"type":"boolean"},"reason":{"type":"string"}}},"example":{"request":{"email":"user@example.com"},"response_shape":{"type":"object","properties":{"email":{"type":"string"},"valid":{"type":"boolean"},"local":{"type":"string"},"domain":{"type":"string"},"hasTld":{"type":"boolean"},"reason":{"type":"string"}}}},"howToCall":"POST a JSON body to https://toolhub-5eo.pages.dev/api/email-validator. Returns {\"ok\":true,\"result\":{...}} on success or {\"ok\":false,\"error\":\"...\"} on failure. No auth, CORS-enabled.","parametersSummary":"  email (string, required) — The email address to validate","curlExample":"curl -X POST https://toolhub-5eo.pages.dev/api/email-validator -H \"Content-Type: application/json\" -d '{\"email\":\"user@example.com\"}'"}