# Bolt Text Stats

> Bolt Text Stats is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes a text string and returns statistical metrics such as word count, character count, sentence count, and readability scores

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/text-stats
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-text-stats-6fea6f94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wDseSpirLYbEi9VIKD81Q

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 bolt-text-stats-6fea6f94 -d '<json body>'
```

Example prompt: Can you give me the text stats — word count, character count, sentence count, and readability — for this paragraph: 'The quick brown fox jumps over the lazy dog. It was a bright cold day in April, and the clocks were striking thirteen.'

## When to prefer this

Use this endpoint when you need quick, cheap ($0.01 USDC) programmatic text metrics — word counts, character counts, sentence counts, or readability scores — without standing up your own NLP pipeline. Ideal for agents that need to validate content length, assess writing complexity, or gather structural text features before further processing.

## Known failure modes

- Missing 'text' field in request body returns a validation error
- Empty string input may return zero-value statistics or an error
- Very large text inputs may time out or be rejected
- Non-string values for 'text' field may cause a parsing error
- Payment failure via x402 will block the request before processing

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing computed text statistics such as word count, character count, sentence count, average word length, and readability metrics for the provided input string.

## Example request

```json
{
 "text": "The quick brown fox jumps over the lazy dog. It was a bright cold day in April, and the clocks were striking thirteen. Artificial intelligence is transforming how we work and live."
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-text-stats-6fea6f94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from boltx402.orbonomy.xyz](https://www.zero.xyz/host/boltx402.orbonomy.xyz/llms.txt)
