# NetIntel Text Statistics

> NetIntel Text Statistics is a paid API for AI agents from netintel.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns instant, deterministic text statistics including character counts, word counts, sentence/paragraph counts, reading time, and speaking time for any input text.

## Facts

- Endpoint: GET https://netintel.dev/text/stats
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-text-statistics-045f315e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kDTXquFxnBtMHkSSthJ0m

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 netintel-text-statistics-045f315e
```

Example prompt: Can you get me the full text stats for this paragraph — word count, character count, reading time, sentence count, and longest word: 'The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs.'

## When to prefer this

Choose this endpoint when you need fast, deterministic, no-hallucination text metrics — especially for pre-processing steps in AI pipelines (chunking, embedding sizing, content moderation thresholds) or when you need accurate reading/speaking time estimates. Prefer this over LLM-based approaches when you need exact counts (not approximations) without any AI non-determinism, and when cost efficiency matters at $0.001 per call. No API key or account setup required.

## Known failure modes

- Missing or empty text parameter returns an error — text must be 1 to 200,000 characters
- Text exceeding 200,000 characters is rejected
- Malformed query string or JSON body returns a bad request error
- Network timeout if the service is temporarily unavailable
- Payment failure via x402 if USDC balance is insufficient or payment not processed

## How this service works

Instant text statistics — characters (with/without spaces), words, unique words, sentences, paragraphs, average word/sentence length, longest word, reading and speaking time. Deterministic, no LLM, no API key. For agents sizing content before summarizing, chunking, embedding, or posting. Pass text as ?text= (GET) or a JSON body (POST).

## Output

A JSON object with: total character count (including spaces), character count excluding spaces, word count, unique word count (case-insensitive), sentence count, paragraph count, average word length (2dp), average sentence length (2dp), longest word, reading time in seconds (at 200 wpm), speaking time in seconds (at 130 wpm), and a findings array (always empty on success).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to analyze — 1 to 200000 characters. Aliases: content, input, body."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "words": {
       "type": "number",
       "description": "Whitespace-delimited tokens"
      },
      "findings": {
       "type": "array",
       "description": "Reserved — currently always [] on success"
      },
      "sentences": {
       "type": "number",
       "description": "Segments ended by . ! ? … followed by whitespace/end (runs collapse; a trailing segment without terminator counts); min 1"
      },
      "characters": {
       "type": "number",
       "description": "Unicode code points, including whitespace"
      },
      "paragraphs": {
       "type": "number",
       "description": "Blocks separated by one or more blank lines; min 1"
      },
      "longest_word": {
       "type": [
        "string",
        "null"
       ],
       "description": "Longest punctuation-stripped word, first seen on ties; null when nothing survives stripping"
      },
      "unique_words": {
       "type": "number",
       "description": "Case-insensitive distinct words after stripping leading/trailing punctuation"
      },
      "avg_word_length": {
       "type": "number",
       "description": "characters_no_spaces / words, 2 dp"
      },
      "avg_sentence_length": {
       "type": "number",
       "description": "words / sentences, 2 dp"
      },
      "characters_no_spaces": {
       "type": "number",
       "description": "Code points excluding all Unicode whitespace"
      },
      "reading_time_seconds": {
       "type": "number",
       "description": "ceil(words / 200 wpm × 60)"
      },
      "speaking_time_seconds": {
       "type": "number",
       "description": "ceil(words / 130 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "words": 14,
  "findings": [],
  "sentences": 2,
  "characters": 83,
  "paragraphs": 1,
  "longest_word": "pay-per-call",
  "unique_words": 14,
  "avg_word_length": 5,
  "avg_sentence_length": 7,
  "characters_no_spaces": 70,
  "reading_time_seconds": 5,
  "speaking_time_seconds": 7
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-text-statistics-045f315e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
