# Ip Validate — REST API endpoint `ip-validate`

Validate an IPv4 or IPv6 address and classify it (public / private / loopback / link-local / multicast / global).

- Category: network
- 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/ip-validate/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/ip-validate/
- Same tool on the other surface: https://findutils.com/mcp/ip-validate/

## Call the endpoint (verified example)

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

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `ip` | string | yes | IP address to validate. |

Example arguments (verified):

```json
{
  "ip": "1.2.3.4"
}
```

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:ip_validate`. Full MCP reference: https://findutils.com/mcp/ip-validate/

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