# Reading Time — REST API endpoint `reading-time`

Estimate reading time for a block of text. Default speed is 238 wpm (Brysbaert 2019 meta-analysis average for adults reading silently). Returns minutes, seconds, and a human-readable string.

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

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/reading-time/execute \
  -H "Content-Type: application/json" \
  -d '{
    "text": "word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/reading-time
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `text` | string | yes | The text to measure. |
| `wpm` | number | no | Words per minute. Default: 238. |

Example arguments (verified):

```json
{
  "text": "word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word word"
}
```

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:reading_time`. Full MCP reference: https://findutils.com/mcp/reading-time/

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