# FarOut Pay-Per-Call LLM Inference (MiniMax M3) via x402

> FarOut Pay-Per-Call LLM Inference (MiniMax M3) via x402 is a paid API for AI agents from farouter.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Runs MiniMax M3 chat completions with pay-per-request USDC billing over x402 — no API key or account required

## Facts

- Endpoint: POST https://farouter.tech/v1/models/minimax-m3/chat/completions
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/farout-pay-per-call-llm-inference-minimax-m3-via-x402-5919ea5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WoIBl3NvR6Qv_1pP8F2kI

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 farout-pay-per-call-llm-inference-minimax-m3-via-x402-5919ea5f -d '<json body>'
```

Example prompt: Ask MiniMax M3 to write a concise Python function that parses a JSON array of user objects and returns only those with a verified email, using up to 512 output tokens and paying per call with my USDC wallet.

## When to prefer this

Choose this endpoint when an autonomous agent or application needs MiniMax M3 specifically, requires pay-per-call USDC billing with no prepaid account or API key, and operates in a crypto-native or x402-compatible environment on Base. Prefer this over OpenAI or Anthropic direct APIs when you need keyless, wallet-based micropayment access to a frontier model.

## Known failure modes

- Payment not received or insufficient USDC balance — returns 402 Payment Required
- Invalid or unsupported model ID — returns 400 Bad Request
- messages array is empty or malformed — returns 422 Unprocessable Entity
- max_tokens exceeds model context limit — returns 400 or truncated response
- Network timeout if streaming connection is dropped mid-response

## How this service works

Fixed-price chat completions for minimax-m3 on FarOut: flat $0.002 per call (includes up to 4,000 input + 1,000 output tokens). Rate: $0.019/1M input tokens, $0.077/1M output tokens. Pay with USDC on Base using x402. No API key, no account, no prepaid balance.

## Output

Returns an OpenAI-compatible JSON object containing one or more choices, each with an assistant message and finish reason, plus a usage block showing prompt and completion token counts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "type": "string",
   "description": "Model id from GET /v1/models, e.g. glm-5.3. No provider prefix."
  },
  "stream": {
   "type": "boolean",
   "description": "SSE streaming."
  },
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "enum": [
       "system",
       "developer",
       "user",
       "assistant",
       "tool"
      ],
      "type": "string"
     },
     "content": {}
    },
    "additionalProperties": true
   },
   "minItems": 1,
   "description": "Chat messages, [OI]-compatible {role, content}."
  },
  "max_tokens": {
   "type": "integer",
   "minimum": 1,
   "description": "Output token budget. Sets your spending cap; actual usage is what gets settled (true-up)."
  },
  "temperature": {
   "type": "number",
   "maximum": 2,
   "minimum": 0,
   "description": "Sampling temperature."
  },
  "max_completion_tokens": {
   "type": "integer",
   "minimum": 1,
   "description": "Alias of max_tokens (gpt-5.x models)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usage": {
   "prompt_tokens": 6,
   "completion_tokens": 8
  },
  "choices": [
   {
    "message": {
     "role": "assistant",
     "content": "Hello! How can I help?"
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/farout-pay-per-call-llm-inference-minimax-m3-via-x402-5919ea5f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from farouter.tech](https://www.zero.xyz/host/farouter.tech/llms.txt)
