# agent402.tools Text Analyze — Bundled Full Text Analysis

> agent402.tools Text Analyze — Bundled Full Text Analysis is a paid API for AI agents from agent402.tools, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-16).

Runs word/sentence statistics, keyword extraction, and token count on input text in a single x402-paid API call.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/text-analyze
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-text-analyze-bundled-full-text-analysis-bc0a32f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zLOrvCH4kiRWrJNZDA4so

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 agent402-tools-text-analyze-bundled-full-text-analysis-bc0a32f7 -d '<json body>'
```

Example prompt: Can you do a full text analysis on this paragraph — get me the word count, sentence count, keywords, and token count all at once: 'Artificial intelligence is transforming industries worldwide. Companies are adopting machine learning to automate tasks, improve efficiency, and generate new insights from data.'

## When to prefer this

Use this endpoint when you need word/sentence statistics, keyword extraction, AND token count together and want to avoid paying for three separate API calls. It bundles all three operations into one x402 payment. Prefer it over calling text-stats, keywords, or token-count individually when you need all outputs for the same text.

## Known failure modes

- Empty or missing 'text' field returns a validation error
- Payment failure via x402 results in 402 response before execution
- Partial success: one or more of the three sub-tools (text-stats, keywords, token-count) may fail while others succeed
- Very large text inputs may hit size limits or increase latency
- Non-UTF-8 or malformed text may cause parsing errors

## How this service works

Bundled execution of the Text analysis workflow - Full text analysis - word/sentence stats, keyword extraction, and token count in one pass. One x402 payment runs 3 underlying tools (text-stats, keywords, token-count); partial-success per step.

## Output

Returns combined results from three underlying tools in one response: (1) text-stats with word and sentence counts, (2) extracted keywords, and (3) token count. Each step may partially succeed, so results may include per-step success/failure indicators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to analyze"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "text": "The x402 protocol enables pay-per-call API payments using USDC stablecoins on Base and other chains."
  },
  "pack": "text-analyze",
  "steps": [
   {
    "ok": true,
    "slug": "text-stats",
    "result": {}
   },
   {
    "ok": true,
    "slug": "keywords",
    "result": {}
   },
   {
    "ok": true,
    "slug": "token-count",
    "result": {}
   }
  ],
  "summary": "3/3 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-text-analyze-bundled-full-text-analysis-bc0a32f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
