# modelprices.xyz Kimi Pricing Table

> modelprices.xyz Kimi Pricing Table is a paid API for AI agents from modelprices.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns per-token pricing for all Kimi models (Kimi K2, Moonshot v1) across every provider that hosts them, sorted cheapest first

## Facts

- Endpoint: GET https://modelprices.xyz/kimi-pricing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-kimi-pricing-table-75e108c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uEg_BPv0dVRNXAX1tB-nl

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 modelprices-xyz-kimi-pricing-table-75e108c1
```

Example prompt: What's the cheapest place to run Kimi K2 right now — show me input, output, cache, and batch token prices across all providers like Bedrock, Azure, Vertex, OpenRouter, and Fireworks, sorted cheapest first.

## When to prefer this

Choose this endpoint when you specifically need Kimi (Moonshot AI) model pricing across multiple hosting providers in a single normalized call. It is the right choice when you want to compare Kimi K2 or Moonshot v1 costs across AWS Bedrock, Azure, Vertex, OpenRouter, and Fireworks simultaneously, rather than scraping each provider individually. Prefer it over general model-price endpoints when your workload is Kimi-specific and you need cache and batch pricing breakdowns alongside standard input/output rates.

## Known failure modes

- Upstream provider pricing pages unavailable — may return stale cached data
- Model not yet indexed — new Kimi model variants may be missing until next hourly refresh
- Payment failure (402) — call requires $0.01 USDC via x402 protocol; missing or invalid payment header returns 402
- Rate limiting — excessive polling may be throttled

## How this service works

Kimi pricing table: what every Kimi model costs per token right now — Kimi K2, Moonshot v1 — from Moonshot AI and every provider that resells or hosts them (Bedrock, Azure, Vertex, OpenRouter, Fireworks). Input, output, cache and batch USD per 1M tokens, sorted cheapest first, so you can compare Kimi inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized table of Kimi model pricing entries (Kimi K2, Moonshot v1 and variants), one row per model-per-provider combination, including input, output, cache, and batch costs in USD per 1M tokens, sorted ascending by cost, refreshed hourly from Moonshot AI, AWS Bedrock, Azure, Vertex AI, OpenRouter, and Fireworks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/modelprices-xyz-kimi-pricing-table-75e108c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from modelprices.xyz](https://www.zero.xyz/host/modelprices.xyz/llms.txt)
