# MiniChan Code Review — NVIDIA NIM MiniMax-M3 API

> MiniChan Code Review — NVIDIA NIM MiniMax-M3 API is a paid API for AI agents from minizzzan.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs AI-powered code review on a submitted code snippet using NVIDIA NIM's MiniMax-M3 428B MoE model, returning feedback and suggestions.

## Facts

- Endpoint: POST https://minizzzan.vercel.app/api/code-review
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minichan-code-review-nvidia-nim-minimax-m3-api-ff78342b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I2DbzN1fVdxQnE3ajVLxA

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-code-review-nvidia-nim-minimax-m3-api-ff78342b -d '<json body>'
```

Example prompt: Can you review this Python function for bugs and best practices? Here's the code: `def add(a, b): return a + b + 1` — it's Python.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use AI code review powered by a large MoE model (MiniMax-M3 428B) without managing API keys or subscriptions — ideal for agents that want on-demand code analysis billed in USDC on Base via x402.

## Known failure modes

- Missing required 'code' field returns a 400-level error
- Very large code snippets may exceed model context limits
- Unsupported or ambiguous language may reduce review quality
- Payment failure via x402/USDC returns a 402 Payment Required error
- Model unavailability on NVIDIA NIM backend returns a 5xx 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 structured object containing AI-generated code review feedback, including identified bugs, style issues, best practice violations, and suggested improvements for the submitted code snippet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "code"
 ],
 "properties": {
  "code": {
   "type": "string",
   "description": "Code to review"
  },
  "language": {
   "type": "string",
   "description": "Programming language"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minichan-code-review-nvidia-nim-minimax-m3-api-ff78342b/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)
