# modelprices.xyz Mistral AI Pricing Table

> modelprices.xyz Mistral AI 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 per-token USD pricing for every AI model served by Mistral AI, including input, output, cache, and batch costs, ranked cheapest first, with context window sizes and capability flags.

## Facts

- Endpoint: GET https://modelprices.xyz/llm/prices/mistral
- 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/modelprices-xyz-mistral-ai-pricing-table-b4f776f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z2ZpMjv6QycoPUfPqLbS8

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-ai-pricing-table-b4f776f7
```

Example prompt: Pull the latest Mistral AI model pricing table — I need to see all models ranked cheapest first with their input, output, cache, and batch costs per million tokens, plus context window sizes.

## When to prefer this

Choose this endpoint when you specifically need Mistral AI model pricing in a single normalized call, want models ranked by cost, need capability flags and context window data joined in, or want hourly-refreshed data without scraping Mistral's site yourself. Prefer it over generic LLM pricing aggregators when Mistral-specific detail (cache pricing, batch pricing, capability flags) is required.

## Known failure modes

- Mistral AI's public pricing page is unavailable, causing a stale or error response
- Network timeout if the upstream data refresh is in progress
- No models returned if Mistral AI removes all public pricing data
- HTTP 402 if the $0.01 USDC payment is not included in the request
- Pricing data may lag up to one hour behind Mistral's official announcements

## How this service works

Mistral AI pricing table: per-token cost of every AI model Mistral AI serves, in one call — input, output, cache and batch USD per 1M tokens, ranked cheapest first, with context window and capability flags joined in. Compare LLM token cost inside Mistral AI and against other providers hosting the same model. Normalized from public sources, cross-checked, refreshed hourly.

## Output

A ranked table of all Mistral AI models with per-token USD pricing (input, output, cache, batch) per 1M tokens, context window sizes, and capability flags, sorted cheapest first. Data is normalized from public sources and refreshed hourly.

## 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-ai-pricing-table-b4f776f7/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)
