# DataVault Text Statistics Analyzer

> DataVault Text Statistics Analyzer is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Analyzes a block of text and returns computed statistics such as word count, sentence count, character count, readability scores, and other linguistic metrics.

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/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/datavault-text-statistics-analyzer-399384af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u9NQtXM4RN9hJPFgV6iYm

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 datavault-text-statistics-analyzer-399384af -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need fast, pay-per-call text statistics computation without setting up your own NLP pipeline. Ideal for agents that need to measure document length, readability, or linguistic complexity on demand at low cost ($0.01 per call).

## Known failure modes

- Missing 'text' field in request body returns a validation error
- Empty string input may return zero-value statistics or an error
- Extremely long text inputs may hit payload size limits
- Malformed JSON body returns a 400 error
- Service unavailability returns a 5xx error

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success flag and a data object containing computed text statistics such as word count, character count, sentence count, average word length, and readability metrics derived from 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/datavault-text-statistics-analyzer-399384af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
