# MiniChan Sentiment Analysis — NVIDIA NIM MiniMax-M3

> MiniChan Sentiment Analysis — NVIDIA NIM MiniMax-M3 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).

Analyzes the sentiment of a given text using NVIDIA NIM's MiniMax-M3 (428B MoE) model, returning a sentiment classification.

## Facts

- Endpoint: POST https://minizzzan.vercel.app/api/sentiment
- 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-sentiment-analysis-nvidia-nim-minimax-m3-6af4c1b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3QyXUd_z6hl7JC4V--4zZ

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-sentiment-analysis-nvidia-nim-minimax-m3-6af4c1b9 -d '<json body>'
```

Example prompt: Analyze the sentiment of this customer review and tell me if it's positive, negative, or neutral: 'The product arrived on time but the packaging was completely crushed and two items were missing — very disappointed.'

## When to prefer this

Use this endpoint when you need AI-powered sentiment analysis backed by a large 428B MoE model (MiniMax-M3 via NVIDIA NIM) and are paying per-call with USDC on Base via x402. Prefer this over lighter-weight sentiment APIs when accuracy on nuanced or complex text matters. Good for agents that already operate in the x402 payment ecosystem.

## Known failure modes

- Missing required 'text' field — returns 400 or validation error
- Empty or blank text string — may return error or undefined sentiment
- Text too long for model context window — may truncate or error
- Payment failure via x402/USDC — returns 402 Payment Required
- Model inference timeout — returns 5xx or gateway error
- Non-English text may yield unreliable sentiment results

## 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

A JSON object containing the sentiment classification (e.g. positive, negative, or neutral) and potentially a confidence score or sentiment label for the provided text input.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minichan-sentiment-analysis-nvidia-nim-minimax-m3-6af4c1b9/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)
