# GEDX402 Kimi K2.5 LLM via x402

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

Runs a Kimi K2.5 large language model inference call, billed per-request in USDC via x402 with no API key required.

## Facts

- Endpoint: GET https://llm.gedx402.com/v1/llm/kimi-k2.5
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-kimi-k2-5-llm-via-x402-0ee93e87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jIJq6jsZmhBOOo7HD_Mcr

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-5-llm-via-x402-0ee93e87
```

Example prompt: Ask the Kimi K2.5 model (paying 0.1 USDC per call via x402 on Base, no API key needed) to explain quantum entanglement in simple terms — use the user role for that question and limit the reply to 200 tokens.

## When to prefer this

Choose this endpoint when you need LLM inference without API key registration, want to pay per-call in USDC via x402 protocol, specifically need the Kimi K2.5 model, or are building an autonomous agent that handles crypto micropayments natively on Base, Polygon, Arbitrum, World, or Solana.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required response
- Invalid message format or missing required role/content fields — 400 Bad Request
- max_tokens exceeds 4096 limit — validation error
- Unsupported blockchain network for payment — payment failure
- Model temporarily unavailable on Cloudflare Workers AI — 503 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 identifier (@cf/moonshotai/kimi-k2.5) and the assistant's generated text response to the provided conversation messages.

## 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.5",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-kimi-k2-5-llm-via-x402-0ee93e87/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)
