# Bolt Text Stats

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

Computes statistical metrics and analysis for a given text string

## Facts

- Endpoint: POST https://deltadata.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-4b24420b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0TRWu4PvSdmCFMO9mCPFb

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

Example prompt: Can you run text stats on this paragraph for me: 'The quick brown fox jumps over the lazy dog. This is a second sentence to test the analysis.' — I want word count, sentence count, and other metrics.

## When to prefer this

Use this endpoint when you need fast, cheap ($0.01 USDC) programmatic text statistics — word count, character count, sentence count, readability — on an arbitrary string, without needing to run NLP locally or integrate a heavyweight text analysis library.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string may return zeroed stats or an error
- Extremely large text inputs may time out or be rejected
- Non-string text value causes schema validation failure
- Network or payment authorization failure returns 402

## 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 statistics about the submitted text, such as word count, character count, sentence count, and potentially readability or complexity scores, along with a success boolean indicating whether the computation succeeded.

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