# modelprices.xyz Mistral Pricing Table

> modelprices.xyz Mistral 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-14).

Returns current per-token pricing for all Mistral AI models across every major host (Mistral, Bedrock, Azure, Vertex, OpenRouter, Fireworks), sorted cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/mistral-pricing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-mistral-pricing-table-e524a7cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_734oxXd-tQg6M57j2jpb4

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 modelprices-xyz-mistral-pricing-table-e524a7cb
```

Example prompt: What's the cheapest place to run Mistral Large right now — show me input and output token prices across all providers like Bedrock, Azure, and OpenRouter.

## When to prefer this

Use this endpoint when you need a comprehensive, cross-provider Mistral-specific pricing comparison in a single call. Prefer it over general model price lookups when your decision space is limited to Mistral-family models and you want to see all hosts side by side, sorted by cost, without querying each provider's API separately.

## Known failure modes

- Pricing data temporarily stale if refresh cycle is mid-run
- Model not found if a newly released Mistral model hasn't been indexed yet
- HTTP 402 if payment header is missing or USDC balance is insufficient
- Rate limiting if called excessively within a short window

## How this service works

Mistral pricing table: what every Mistral model costs per token right now — Mistral Large, Mixtral, Codestral, Magistral — from Mistral AI 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 Mistral inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized, sorted table of Mistral AI model pricing including model name, host/provider, input cost (USD per 1M tokens), output cost, cache cost, and batch cost — refreshed hourly and sorted cheapest first across providers including Mistral native, AWS Bedrock, Azure, Google Vertex, OpenRouter, and Fireworks.

## 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/modelprices-xyz-mistral-pricing-table-e524a7cb/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)
