# GEDX402 Kimi K2.6 LLM Inference

> GEDX402 Kimi K2.6 LLM Inference is a paid API for AI agents from llm.gedx402.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-13).

Runs a conversation through the Kimi K2.6 large language model via Cloudflare Workers AI, paid per-call with USDC on multiple blockchains — no API key required.

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/llm/kimi-k2.6
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-kimi-k2-6-llm-inference-8b36dd2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JX4H1Wzstu1e9WphfbbAN

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-kimi-k2-6-llm-inference-8b36dd2a
```

Example prompt: Ask the Kimi K2.6 model this question using my USDC wallet on Base, limiting the reply to 512 tokens: 'What are three practical strategies for improving sleep quality?'

## When to prefer this

Choose this endpoint when you need keyless LLM inference paid per-call with USDC on Base, Polygon, Arbitrum, World, or Solana and want to use the Kimi K2.6 model specifically. Ideal for agents operating in crypto-native environments that lack centralized API key management, or for one-off queries where subscription-based API access is impractical.

## Known failure modes

- Insufficient USDC balance on the selected chain — payment rejected before inference runs
- Invalid or missing messages array — request rejected with schema validation error
- max_tokens value out of range (must be 1–4096) — request rejected
- Unsupported blockchain network specified for payment — payment fails
- Model overloaded or Workers AI backend error — 5xx response with no completion
- Malformed role value in messages array — request rejected

## 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/moonshotai/kimi-k2.6) and the assistant's generated reply text as a 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": "@cf/moonshotai/kimi-k2.6",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-kimi-k2-6-llm-inference-8b36dd2a/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)
