# GEDX402 QwQ-32B LLM

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

Run inference on Qwen QwQ-32B large language model via x402 micropayment, no API key required

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/llm/qwq-32b
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-qwq-32b-llm-7c4d406e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DCOGnIhlo_R4aWjccs7bz

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-qwq-32b-llm-7c4d406e
```

Example prompt: Ask QwQ-32B to walk through the pros and cons of nuclear energy step by step — send it as a single user message with up to 1024 tokens in the reply, and pay with USDC on Base.

## When to prefer this

Choose this endpoint when you need access to the Qwen QwQ-32B reasoning model without managing API keys or subscriptions, and can pay per-call in USDC on Base, Polygon, Arbitrum, World, or Solana. Ideal for agents operating in crypto-native environments that use x402 micropayment protocol, or when avoiding OpenAI/Anthropic vendor lock-in on a pay-as-you-go basis.

## Known failure modes

- Insufficient USDC balance — 402 payment required response if wallet lacks funds
- Invalid messages array format — missing required 'role' or 'content' fields causes schema validation error
- max_tokens out of range — values below 1 or above 4096 rejected
- Network timeout if model inference takes too long for complex reasoning tasks
- Unsupported payment chain — payment attempted on unsupported network fails facilitator check

## 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 '@cf/qwen/qwq-32b' and the generated assistant response text as a string field named 'response'.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-qwq-32b-llm-7c4d406e/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)
