# GED X402 Chat Fast - Workers AI LLM via Crypto Payment

> GED X402 Chat Fast - Workers AI LLM via Crypto Payment is a paid API for AI agents from ged-x402-chat.jvalamis.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Calls a Cloudflare Workers AI LLM (Llama 3.2 1B Instruct) for fast chat completions, payable with USDC on multiple chains via x402, no API key required.

## Facts

- Endpoint: GET https://ged-x402-chat.jvalamis.workers.dev/v1/chat/fast
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ged-x402-chat-fast-workers-ai-llm-via-crypto-payment-c712a657
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jJ8HZYiCG_MLNB99eroVB

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 ged-x402-chat-fast-workers-ai-llm-via-crypto-payment-c712a657
```

Example prompt: Ask the AI assistant 'What are three tips for writing clean Python code?' using up to 512 tokens, and pay the $0.005 USDC fee on Base — no API key needed.

## When to prefer this

Choose this endpoint when you need a fast, low-cost LLM chat completion with no API key or account signup, and you can pay $0.005 USDC per call on-chain via x402 on Base, Polygon, Arbitrum, World, or Solana. Ideal for agents operating in crypto-native environments or where traditional API credentials are unavailable. Best suited for short, rapid inference tasks using Llama 3.2 1B Instruct; for larger models or higher-quality output, look elsewhere.

## Known failure modes

- Payment not provided or insufficient USDC — returns HTTP 402 Payment Required
- Invalid message format or missing required role/content fields — returns 400 Bad Request
- max_tokens out of range (below 1 or above 4096) — validation error
- Unsupported payment network — payment rejected by x402 facilitator
- Model inference timeout — Workers AI backend latency spike
- Malformed JSON body — parse error response

## 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 (e.g. '@cf/meta/llama-3.2-1b-instruct') and the assistant's generated response text 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/meta/llama-3.2-1b-instruct",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ged-x402-chat-fast-workers-ai-llm-via-crypto-payment-c712a657/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ged-x402-chat.jvalamis.workers.dev](https://www.zero.xyz/host/ged-x402-chat.jvalamis.workers.dev/llms.txt)
