# Bolt Text Stats

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

Computes statistical metrics and analytics for a given text string

## Facts

- Endpoint: POST https://bolt.orbonomy.xyz/api/text-stats
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-text-stats-113e30d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fByrZ4VlM7NM2X5nGjbxW

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-113e30d3 -d '<json body>'
```

Example prompt: Can you run text stats on this paragraph for me: 'The quick brown fox jumps over the lazy dog. It was a bright and sunny morning in the forest. The animals watched in silence as the fox disappeared into the trees.' — I want to know things like word count, sentence count, and any readability info.

## When to prefer this

Choose this endpoint when you need quick, lightweight text statistics (word count, sentence count, readability) on a given string without needing NLP sentiment or classification. Ideal for content validation, readability checks, or preprocessing steps in a pipeline.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string may return zero-value stats or an error
- Very large text inputs may time out or be truncated
- Malformed JSON request body returns 400 error
- Payment failure via x402 returns 402 Payment Required

## 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 data object containing computed text statistics such as word count, character count, sentence count, paragraph count, and potentially readability scores or lexical metrics, along with a success boolean.

## 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-113e30d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
