# Mistral AI via Locus x402 — List Models

> Mistral AI via Locus x402 — List Models is a paid API for AI agents from mistral.x402.paywithlocus.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Lists all available Mistral AI models (Large, Medium, Small, Codestral, Magistral, Pixtral, embeddings, moderation) accessible through the Locus x402 pay-per-call gateway.

## Facts

- Endpoint: POST https://mistral.x402.paywithlocus.com/mistral/models
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mistral-ai-via-locus-x402-list-models-59598f7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m9ldVvM2J9Id0AfXw3Hxg

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 mistral-ai-via-locus-x402-list-models-59598f7d -d '<json body>'
```

Example prompt: Show me all the Mistral AI models available through the Locus x402 gateway so I can pick the right one for my task.

## When to prefer this

Use this endpoint when you need to programmatically discover which Mistral AI models are available through the Locus x402 micropayment gateway before making a generation or embedding call. Prefer this over calling Mistral's native API directly when you want pay-per-call USDC billing without managing API keys, or when operating inside an x402-compatible agent framework.

## Known failure modes

- Payment failure: insufficient USDC balance or x402 payment header missing/malformed
- Network timeout reaching the Locus gateway
- Upstream Mistral API unavailability causing empty or error response
- Invalid body type enum value causing schema validation error
- Non-POST method returns method-not-allowed error

## How this service works

Locus public pay-per-use API

## Output

Returns a JSON object containing a list of available Mistral AI model identifiers and metadata, along with a payment record showing the settled USDC amount (typically ~$0.001), the authorized max, a unique request ID, and a status URL for tracking the call.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mistral-ai-via-locus-x402-list-models-59598f7d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mistral.x402.paywithlocus.com](https://www.zero.xyz/host/mistral.x402.paywithlocus.com/llms.txt)
