# MiniMax Model Pricing Table

> MiniMax Model Pricing Table is a paid API for AI agents from modelprices.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current per-token pricing for all MiniMax models (M2, Text) across every provider that hosts them, including AWS Bedrock, Azure, Vertex, OpenRouter, and Fireworks, sorted cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/minimax-pricing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minimax-model-pricing-table-22bef133
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RhO8pfZazWgtSdUXkenry

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 minimax-model-pricing-table-22bef133
```

Example prompt: What's the cheapest place to run MiniMax M2 right now — show me token prices across all providers like Bedrock, OpenRouter, and Fireworks, sorted from cheapest to most expensive.

## When to prefer this

Use this endpoint when you specifically need MiniMax model pricing and want a cross-provider comparison in a single call. Prefer it over general model-pricing endpoints when your workflow is locked to MiniMax models and you need to pick the cheapest host. It is ideal for cost-optimization agents, budget forecasting, and automated provider-selection pipelines focused on MiniMax inference.

## Known failure modes

- Pricing data temporarily stale if refresh cycle is mid-update
- HTTP 402 if x402 micropayment of $0.01 USDC is not included
- Empty or partial response if MiniMax models are temporarily delisted by a provider
- Endpoint returns no results if a newly launched MiniMax model has not yet been indexed

## How this service works

MiniMax pricing table: what every MiniMax model costs per token right now — MiniMax M2, MiniMax Text — from MiniMax and every provider that resells or hosts them (Bedrock, Azure, Vertex, OpenRouter, Fireworks). Input, output, cache and batch USD per 1M tokens, sorted cheapest first, so you can compare MiniMax inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized pricing table listing every MiniMax model (e.g. MiniMax M2, MiniMax Text) with input, output, cache, and batch costs in USD per 1 million tokens for each provider that hosts or resells them, sorted ascending by cost. Data is refreshed hourly and cross-checked across sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minimax-model-pricing-table-22bef133/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from modelprices.xyz](https://www.zero.xyz/host/modelprices.xyz/llms.txt)
