# Agent Micro Text Summarize

> Agent Micro Text Summarize is a paid API for AI agents from agent-micro.annushka1190.workers.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Summarizes a given text input into a concise summary using a micro-tool API paid per-call in USDC via x402

## Facts

- Endpoint: POST https://agent-micro.annushka1190.workers.dev/v1/text/summarize
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-micro-text-summarize-6fd6ebc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aH1J4ZCHb8px0OqOFpisg

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 agent-micro-text-summarize-6fd6ebc6 -d '<json body>'
```

Example prompt: Can you summarize this article for me? Here's the full text: 'Artificial intelligence is rapidly transforming industries across the globe, from healthcare to finance, enabling automation of complex tasks, improving decision-making with data-driven insights, and opening new possibilities for human-machine collaboration.' Just give me the key points in a few sentences.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-use text summarization tool that charges fractions of a cent ($0.004 USDC) with no subscription required, especially in agent pipelines that need to summarize text on demand without integrating a full LLM API. Ideal for cost-sensitive automation workflows processing many documents at micro-scale pricing.

## Known failure modes

- Missing 'input' field in request body returns validation error
- Empty or very short text may produce trivial summaries
- Very long text exceeding token limits may be truncated or return an error
- Network timeout on Cloudflare Worker edge if processing takes too long
- Payment failure via x402 protocol results in 402 response before content is served

## How this service works

Advanced micro-tools for AI agents: cryptographic randomness, text analysis, math helpers, date arithmetic, web metadata, and IP intelligence. All under $0.01 per request, paid in USDC via x402.

## Output

A JSON response with an 'ok' boolean and a condensed summary of the submitted text, delivered as a structured JSON object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "const": "json"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-micro-text-summarize-6fd6ebc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-micro.annushka1190.workers.dev](https://www.zero.xyz/host/agent-micro.annushka1190.workers.dev/llms.txt)
