# FarOut Kimi K2.6 Chat Completions (x402 Pay-Per-Call)

> FarOut Kimi K2.6 Chat Completions (x402 Pay-Per-Call) is a paid API for AI agents from farouter.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Calls the Kimi K2.6 frontier model for chat, reasoning, or coding tasks, billing $0.001 USDC per request over the x402 payment protocol with no API key or account required.

## Facts

- Endpoint: POST https://farouter.tech/v1/models/kimi-k2.6/chat/completions
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/farout-kimi-k2-6-chat-completions-x402-pay-per-call-d42c3007
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6izs6x5M9C3LeCKxX7UVs

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 farout-kimi-k2-6-chat-completions-x402-pay-per-call-d42c3007 -d '<json body>'
```

Example prompt: Using the Kimi K2.6 model on FarOut, send this message and pay per call in USDC: 'Explain the trade-offs between transformer and state-space architectures for long-context tasks' — use up to 512 output tokens and a temperature of 0.7.

## When to prefer this

Choose this endpoint when you need to call the Kimi K2.6 model specifically and want to avoid API key management or prepaid subscription overhead. It is ideal for autonomous agents that need pay-as-you-go LLM inference billed in USDC micropayments via x402, especially when operating without a persistent identity or account. Prefer this over managed LLM APIs when the calling agent already has a USDC wallet on Base and wants to pay only for actual usage.

## Known failure modes

- Insufficient USDC balance or x402 payment failure returns a 402 Payment Required response
- Invalid or unsupported model ID returns a 400 or 404 error
- messages array missing or empty triggers a validation error
- max_tokens set too high may cause quota or timeout errors
- Network or upstream model provider outage returns a 503 or 5xx error
- Malformed message role (not in enum) causes a schema validation rejection

## How this service works

Fixed-price chat completions for kimi-k2.6 on FarOut: flat $0.001 per call (includes up to 4,000 input + 1,000 output tokens). Rate: $0.055/1M input tokens, $0.232/1M output tokens. Pay with USDC on Base using x402. No API key, no account, no prepaid balance.

## Output

Returns an OpenAI-compatible JSON object containing one or more choices, each with an assistant message (role + content) and a finish_reason, plus a usage object reporting prompt_tokens and completion_tokens consumed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "model": {
   "type": "string",
   "description": "Model id from GET /v1/models, e.g. glm-5.3. No provider prefix."
  },
  "stream": {
   "type": "boolean",
   "description": "SSE streaming."
  },
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "enum": [
       "system",
       "developer",
       "user",
       "assistant",
       "tool"
      ],
      "type": "string"
     },
     "content": {}
    },
    "additionalProperties": true
   },
   "minItems": 1,
   "description": "Chat messages, [OI]-compatible {role, content}."
  },
  "max_tokens": {
   "type": "integer",
   "minimum": 1,
   "description": "Output token budget. Drives the quote directly."
  },
  "temperature": {
   "type": "number",
   "maximum": 2,
   "minimum": 0,
   "description": "Sampling temperature."
  },
  "max_completion_tokens": {
   "type": "integer",
   "minimum": 1,
   "description": "Alias of max_tokens (gpt-5.x models)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usage": {
   "prompt_tokens": 6,
   "completion_tokens": 8
  },
  "choices": [
   {
    "message": {
     "role": "assistant",
     "content": "Hello! How can I help?"
    },
    "finish_reason": "stop"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/farout-kimi-k2-6-chat-completions-x402-pay-per-call-d42c3007/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from farouter.tech](https://www.zero.xyz/host/farouter.tech/llms.txt)
