# GEDX402 Workers AI Reasoning (Chat)

> GEDX402 Workers AI Reasoning (Chat) 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 a DeepSeek-R1 reasoning model chat completion via Cloudflare Workers AI, paid per-call with USDC on multiple chains — no API key required.

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/chat/reasoning
- 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-workers-ai-reasoning-chat-d88a0df7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cijBc6orBmIUMBhe5XJd_

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-workers-ai-reasoning-chat-d88a0df7
```

Example prompt: Using the pay-per-call reasoning model (no API key needed, pay 0.08 USDC), send this conversation to DeepSeek R1: system message 'You are a helpful assistant', user message 'Explain why the sky is blue step by step', and limit the reply to 512 tokens.

## When to prefer this

Choose this endpoint when you need a reasoning-capable LLM (DeepSeek R1) with no API key or account registration, want to pay per-call in USDC on Base, Polygon, Arbitrum, World, or Solana, or are building crypto-native agents that need permissionless AI access. Prefer it over OpenAI or Anthropic when avoiding monthly subscriptions or API key management overhead.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid message format (missing role or content fields) — 400 Bad Request
- max_tokens out of range (below 1 or above 4096) — validation error
- Network or Workers AI backend unavailability — 500/503 error
- Unsupported blockchain/wallet for USDC payment — payment rejected

## How this service works

Qwen3 30B FP8 frontier — reasoning, code, and agent tiers via ?full=1.

## Output

A JSON object containing the model identifier (@cf/deepseek-ai/deepseek-r1-distill-qwen-32b) and the assistant's generated reply text as a string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## 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-workers-ai-reasoning-chat-d88a0df7/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)
