# klymax402 Word Counter API

> klymax402 Word Counter API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Analyzes a text string and returns word, sentence, character, paragraph counts, and estimated reading time

## Facts

- Endpoint: GET https://klymax402.com/api/word-counter/api/count
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-word-counter-api-416050a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fnj0LwoZn4Ldu2J2gUxvF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability klymax402-word-counter-api-416050a4
```

Example prompt: Can you count the words, sentences, and paragraphs in this text and tell me how long it would take to read? Here's the text: 'The quick brown fox jumps over the lazy dog. A second sentence follows this one. And here is a third.'

## When to prefer this

Choose this endpoint when you need a fast, low-cost programmatic word and readability analysis without setting up API keys. Ideal for agents that need to validate content length, estimate reading time, or gather text statistics on the fly as part of a larger workflow.

## Known failure modes

- Empty or missing text parameter returns zero counts or an error
- Very large text inputs may time out or return unexpected results
- Non-standard punctuation or formatting may affect sentence and paragraph detection accuracy
- Payment failure (insufficient USDC balance) blocks the request with a 402 response

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object with word count, sentence count, total character count, paragraph count, character count excluding spaces, estimated reading time in minutes, and estimated reading time in seconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "The text to analyze"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "words": 1,
  "sentences": 1,
  "characters": 1,
  "paragraphs": 1,
  "charactersNoSpaces": 1,
  "readingTimeMinutes": 1,
  "readingTimeSeconds": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-word-counter-api-416050a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
