# Meta Tag Fetcher — REST API endpoint `meta-fetch`

Fetch title, meta description, Open Graph tags, and favicon from a URL.

- Category: developer
- REST endpoint: POST https://api.findutils.com/api/tools/meta-fetch/execute (no API keys, 60 req/min per IP)
- MCP: not exposed on the MCP server. See https://findutils.com/mcp/ for the tools that are.
- Reference page: https://findutils.com/api/meta-fetch/

## Call the endpoint (verified example)

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

# Parameter schema
curl https://api.findutils.com/api/tools/meta-fetch
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `url` | string | yes | URL to fetch meta tags from (e.g., https://example.com) |

Example arguments (verified):

```json
{
  "url": "https://findutils.com"
}
```

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

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