# AI Rook Summarize — Bullet-Point Text Summarizer

> AI Rook Summarize — Bullet-Point Text Summarizer is a paid API for AI agents from agents.ai-rook.com, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-14).

Summarizes a given text into concise bullet points using the MiniMax Queen M2.7 456B MoE model, paid per-call via x402 USDC.

## Facts

- Endpoint: GET https://agents.ai-rook.com/api/summarize
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-rook-summarize-bullet-point-text-summarizer-b58b7b36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hJLcjBYvfhmolUyFRFVAb

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 ai-rook-summarize-bullet-point-text-summarizer-b58b7b36
```

Example prompt: Can you summarize this article into bullet points for me? Here's the text: 'Central banks around the world are signaling a pause in interest rate hikes as inflation data shows consistent moderation across major economies, though analysts warn that energy price volatility could reignite price pressures in Q3.'

## When to prefer this

Choose this endpoint when you need a fast, cheap bullet-point summarization powered by a large MoE model without API key signup. At $0.05/call it's suitable for lightweight summarization tasks within a crypto-native, pay-per-call workflow on Base mainnet. Prefer this over general LLM APIs when operating in an x402 agentic commerce context or when you need on-chain reputation accountability for the AI service.

## Known failure modes

- Payment not received — returns 402 Payment Required if USDC payment not sent via x402
- Input text too long or empty — may return a malformed or empty summary
- Model unavailable — upstream MiniMax inference failure could return 5xx error
- Insufficient USDC balance — transaction fails before call is processed

## How this service works

Summarize any text or URL. Styles: concise (default), bullets, eli5. MiniMax M2.7 (456B-parameter Mixture-of-Experts) inference.

## Output

Returns a JSON object with the model used (minimax-m2.7-mxfp4), style (bullets), word count, and a newline-separated bullet-point summary of the input text. Cost is $0.05 USDC per call via x402 on Base mainnet.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "minimax-m2.7-mxfp4",
  "style": "bullets",
  "words": 24,
  "summary": "• Point one\n• Point two\n• Point three"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-rook-summarize-bullet-point-text-summarizer-b58b7b36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.ai-rook.com](https://www.zero.xyz/host/agents.ai-rook.com/llms.txt)
