# MiniChan Summarize — NVIDIA NIM MiniMax-M3 Text Summarization

> MiniChan Summarize — NVIDIA NIM MiniMax-M3 Text Summarization is a paid API for AI agents from minizzzan.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Summarizes a block of text to a target word count using NVIDIA NIM MiniMax-M3 (428B MoE) model, payable via USDC on Base.

## Facts

- Endpoint: POST https://minizzzan.vercel.app/api/summarize
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minichan-summarize-nvidia-nim-minimax-m3-text-summarization-521e07b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nIonfp-ri7dr2DqOhti7d

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 minichan-summarize-nvidia-nim-minimax-m3-text-summarization-521e07b3 -d '<json body>'
```

Example prompt: Can you summarize this article for me in about 150 words? Here's the text: 'Artificial intelligence has rapidly transformed industries across the globe, from healthcare diagnostics to autonomous vehicles. Researchers continue to push the boundaries of what machines can learn and do...'

## When to prefer this

Choose this endpoint when you need AI-powered text summarization backed by a large 428B MoE model with strong language understanding. Suitable for long-form documents, articles, or reports where quality of summarization matters. Costs $0.05 USDC per call via x402 on Base, so prefer it when output quality justifies the cost over free/cheaper alternatives.

## Known failure modes

- Missing required 'text' field returns a validation error
- Text too long may exceed model context window and return an error
- Payment failure (insufficient USDC or x402 protocol error) blocks the request
- Server-side model inference timeout for very large inputs
- Malformed JSON body returns 400 error

## How this service works

NVIDIA NIM MiniMax-M3 (428B MoE) powered API for AI agents. 15 multimodal endpoints — text, vision, code, reasoning, creative. Pay with USDC on Base via x402.

## Output

Returns a summarized version of the input text, condensed to approximately the requested word count (or a default length if max_words is not specified).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to summarize"
  },
  "max_words": {
   "type": "number",
   "description": "Target summary length"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minichan-summarize-nvidia-nim-minimax-m3-text-summarization-521e07b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minizzzan.vercel.app](https://www.zero.xyz/host/minizzzan.vercel.app/llms.txt)
