# GEDX402 DeepSeek-R1-Distill-Qwen-32B LLM

> GEDX402 DeepSeek-R1-Distill-Qwen-32B LLM is a paid API for AI agents from llm.gedx402.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Runs inference against the DeepSeek-R1-Distill-Qwen-32B language model via Cloudflare Workers AI, payable per-call with USDC on multiple blockchains — no API key required.

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/llm/deepseek-r1-distill-qwen-32b
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-deepseek-r1-distill-qwen-32b-llm-4a9fdf5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FFEVGLdrCqhos6AV8M4Cm

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-deepseek-r1-distill-qwen-32b-llm-4a9fdf5d
```

Example prompt: Using the GEDX402 DeepSeek-R1-Distill-Qwen-32B endpoint (pay-per-call, no API key), send this conversation: system: 'You are a concise math tutor.', user: 'Explain the Pythagorean theorem in two sentences.' — limit the reply to 200 tokens.

## When to prefer this

Choose this endpoint when you need a capable 32B reasoning/distill model without managing API keys or monthly subscriptions — ideal for agents that can pay USDC micropayments per inference call. Prefer it over OpenAI or Anthropic APIs when operating in a crypto-native, permissionless environment. The DeepSeek-R1-Distill-Qwen-32B model is especially strong for structured reasoning and step-by-step problem solving.

## Known failure modes

- Payment not included or insufficient USDC — returns HTTP 402 Payment Required
- Invalid message role (not system/user/assistant) — schema validation error
- max_tokens exceeds 4096 — request rejected
- Empty messages array — model may return empty or error response
- Blockchain network congestion causes payment verification delay — timeout or retry needed
- Model unavailable on Cloudflare Workers AI — upstream 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 containing the model name (@cf/deepseek-ai/deepseek-r1-distill-qwen-32b) and the generated assistant response string. No streaming — single synchronous reply up to max_tokens.

## 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/deepseek-ai/deepseek-r1-distill-qwen-32b",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-deepseek-r1-distill-qwen-32b-llm-4a9fdf5d/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)
