# quartermaster.surewhynot.app Text Stats

> quartermaster.surewhynot.app Text Stats is a paid API for AI agents from quartermaster.surewhynot.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns word, sentence, and paragraph counts, estimated reading time, and readability score for a given text string.

## Facts

- Endpoint: GET https://quartermaster.surewhynot.app/v1/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/quartermaster-surewhynot-app-text-stats-db2cd3c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7So8MIT9JgCmlj9AqM96o

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 quartermaster-surewhynot-app-text-stats-db2cd3c5
```

Example prompt: Can you analyze this article text and tell me the word count, sentence count, paragraph count, estimated reading time, and readability score: 'The quick brown fox jumps over the lazy dog. Pack my box with five dozen liquor jugs. How vexingly quick daft zebras jump!'

## When to prefer this

Use this endpoint when you need quick, low-cost ($0.001 USDC) text statistics — word/sentence/paragraph counts, reading time, and readability scoring — without needing a full NLP pipeline or AI summarization. Prefer this over AI-based analysis tools when you just need numerical metrics about text structure and accessibility.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Text exceeding 100,000 characters is rejected
- Empty string input may return zeroed stats or an error
- Network or server errors may return 5xx responses

## How this service works

Word, sentence, and paragraph counts, reading time, and readability score for text.

## Output

A structured JSON object containing word count, sentence count, paragraph count, estimated reading time (e.g. in minutes), and a readability score (such as Flesch-Kincaid or similar) for the submitted text.

## 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",
       "maxLength": 100000
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quartermaster-surewhynot-app-text-stats-db2cd3c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quartermaster.surewhynot.app](https://www.zero.xyz/host/quartermaster.surewhynot.app/llms.txt)
