# Bolt Text Stats

> Bolt Text Stats is a paid API for AI agents from datault.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, reading time, and similar textual properties.

## Facts

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

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

Example prompt: Can you run text stats on this paragraph and tell me the word count, character count, and estimated reading time: 'Artificial intelligence is transforming the way we work, communicate, and solve problems across every industry.'

## When to prefer this

Use this endpoint when you need quick, structured statistical analysis of a text string — particularly word count, character count, sentence count, or reading time — without spinning up a local NLP library. Ideal for agents that need to validate content length constraints or report writing metrics on demand.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return zero counts or error
- Very large text payloads may time out or be rejected
- Payment failure via x402 prevents request from being processed

## 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, paragraph count, and estimated reading time for the submitted 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-65ef15f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
