# Email Validate — REST API endpoint `email-validate`

Validate an email address and break it into local / domain / TLD parts.

- Category: validation
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/email-validate/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/email-validate/
- Same tool on the other surface: https://findutils.com/mcp/email-validate/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/email-validate/execute \
  -H "Content-Type: application/json" \
  -d '{
    "email": "a@b.com"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/email-validate
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `email` | string | yes | Email address to validate. |

Example arguments (verified):

```json
{
  "email": "a@b.com"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:email_validate`. Full MCP reference: https://findutils.com/mcp/email-validate/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
