# Bolt Text Stats

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

Computes statistical metrics (word count, sentence count, readability, etc.) for a given text input

## Facts

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

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

Example prompt: Can you run text stats on this paragraph and tell me the word count, sentence count, and readability score: 'The quick brown fox jumps over the lazy dog. It was a bright and sunny day in the meadow.'?

## When to prefer this

Use this endpoint when you need quick, pay-per-use text statistics without setting up a local NLP library. Ideal for AI agents that need word count, readability, or sentence metrics on-the-fly within an automated workflow. Choose this over manual counting or heavyweight NLP pipelines when simplicity and speed matter.

## Known failure modes

- Missing required 'text' field returns a 400 or error response
- Empty string input may return zeroed stats or an error
- Extremely long text may cause timeout or truncation
- Non-string input for 'text' field returns a validation 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 JSON object with a success boolean and a data object containing computed text statistics such as word count, character count, sentence count, and potentially readability scores or other linguistic metrics for the provided text.

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