# GEDX402 Mistral-7B-Instruct LLM (x402, USDC)

> GEDX402 Mistral-7B-Instruct LLM (x402, USDC) is a paid API for AI agents from chat.gedx402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Runs inference on Mistral-7B-Instruct-v0.2 via a pay-per-call x402 endpoint accepting USDC on multiple chains, no API key required

## Facts

- Endpoint: GET https://chat.gedx402.com/v1/llm/mistral-7b-instruct-v0.2
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-mistral-7b-instruct-llm-x402-usdc-ef60e2c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S4a5WNwINPxt73SkJ9bX1

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-7b-instruct-llm-x402-usdc-ef60e2c1
```

Example prompt: Ask Mistral-7B-Instruct to explain the difference between supervised and unsupervised learning in 3 sentences — pay with USDC on Base, no API key needed, and limit the reply to 300 tokens.

## When to prefer this

Choose this endpoint when you need Mistral-7B-Instruct inference without managing API keys or subscriptions, and you can pay per-call in USDC via the x402 protocol on Base, Polygon, Arbitrum, World, or Solana. Ideal for agentic workflows that need autonomous LLM calls billed directly on-chain.

## Known failure modes

- Insufficient USDC balance or failed on-chain payment — HTTP 402 with payment required details
- Invalid messages array (missing role or content fields) — HTTP 400 validation error
- max_tokens out of range (less than 1 or greater than 4096) — HTTP 400
- Model inference timeout or upstream Workers AI error — HTTP 500
- Unsupported blockchain network for payment — payment not accepted

## How this service works

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

## Output

A JSON object containing the model identifier (@hf/mistral/mistral-7b-instruct-v0.2) and the generated assistant text response string.

## 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": "@hf/mistral/mistral-7b-instruct-v0.2",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-mistral-7b-instruct-llm-x402-usdc-ef60e2c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chat.gedx402.com](https://www.zero.xyz/host/chat.gedx402.com/llms.txt)
