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

> FarOut Pay-Per-Call Kimi-K2.7 Chat Completions (x402) 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).

Runs a Kimi-K2.7 chat completion request billed per-call in USDC via x402, with no API key or account required.

## Facts

- Endpoint: POST https://farouter.tech/v1/metered/models/kimi-k2.7/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-pay-per-call-kimi-k2-7-chat-completions-x402-23d388a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vajBOp0X6moSuq-v0geWr

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

Example prompt: Using FarOut's pay-per-call router, send this message to the Kimi-K2.7 model and get a response — I don't have an API key, so just pay the $0.001 USDC fee per call on Base: 'Explain the concept of zero-knowledge proofs in two paragraphs.'

## When to prefer this

Choose this endpoint when you need Kimi-K2.7 chat completions without any account registration, API key management, or subscription commitment. It is ideal for autonomous AI agents that can handle x402 micropayments natively on Base or Solana, one-off queries where a subscription is wasteful, or workflows requiring anonymous, pay-as-you-go LLM access billed transparently per request in USDC.

## Known failure modes

- 402 Payment Required — x402 payment not submitted or insufficient; endpoint returns a payment quote that the client must fulfill before retrying
- Invalid model path — if the model slug in the URL is wrong, a 404 or 400 is returned
- Malformed request body — missing 'messages' array or invalid JSON results in a 400 error
- Payment verification failure — on-chain payment not confirmed in time, request rejected without charge
- Rate or quota limits — upstream Kimi model may throttle if provider-side capacity is exceeded

## How this service works

Pay-per-call LLM inference over x402. Frontier models (GLM, GPT, Gemini, Kimi, DeepSeek, MiniMax) billed per request in USDC on Base or Solana mainnet. No API key, no account. The 402 quotes your exact request; failed calls are never charged.

## Output

Returns an OpenAI-compatible JSON object containing the assistant's reply message (role + content), a finish_reason (e.g. 'stop'), and token usage stats (prompt_tokens, completion_tokens). Failed or unpaid calls are never charged.

## 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-pay-per-call-kimi-k2-7-chat-completions-x402-23d388a2/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)
