# GEDX402 Mistral Small 3.1 24B Instruct LLM

> GEDX402 Mistral Small 3.1 24B Instruct LLM is a paid API for AI agents from llm.gedx402.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Runs inference on Mistral Small 3.1 24B Instruct via Cloudflare Workers AI, billed per-call in USDC over x402 with no API key required

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/llm/mistral-small-3.1-24b-instruct
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-mistral-small-3-1-24b-instruct-llm-09ae0bf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-xn5wkA_N1hHTlPGHw-Ve

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 gedx402-mistral-small-3-1-24b-instruct-llm-09ae0bf6
```

Example prompt: Chat with the Mistral Small 3.1 24B model and answer this question — no API key, just pay per call in USDC: 'Explain the difference between supervised and unsupervised learning in three sentences.' Limit the reply to 300 tokens.

## When to prefer this

Choose this endpoint when you need a capable mid-size open instruction-following model (24B parameters) without API key registration, want to pay programmatically per-call in USDC on Base, Polygon, Arbitrum, World, or Solana via x402, and are building agents that require permissionless LLM access billed on-chain.

## Known failure modes

- Insufficient USDC balance or failed x402 payment — returns 402 Payment Required
- Invalid message role (not system/user/assistant) — schema validation error
- max_tokens exceeds 4096 — rejected by schema validation
- Empty or malformed messages array — likely 400 Bad Request
- Network timeout or Cloudflare Workers AI upstream unavailability — 5xx error

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object with the model identifier (@cf/mistralai/mistral-small-3.1-24b-instruct) and a 'response' string containing the generated assistant reply text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "enum": [
       "system",
       "user",
       "assistant"
      ],
      "type": "string",
      "description": "Speaker role for this turn."
     },
     "content": {
      "type": "string",
      "description": "Message text for this turn."
     }
    }
   },
   "description": "Conversation turns in order (system, user, assistant)."
  },
  "max_tokens": {
   "type": "integer",
   "maximum": 4096,
   "minimum": 1,
   "description": "Maximum tokens to generate in the assistant reply."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "@cf/mistralai/mistral-small-3.1-24b-instruct",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-mistral-small-3-1-24b-instruct-llm-09ae0bf6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from llm.gedx402.com](https://www.zero.xyz/host/llm.gedx402.com/llms.txt)
