# modelprices.xyz Command Pricing Table

> modelprices.xyz Command 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-14).

Returns current per-token pricing for all Command models (Command A, Command R+, Command R) across every host including Cohere, Bedrock, Azure, Vertex, OpenRouter, and Fireworks, sorted cheapest first.

## Facts

- Endpoint: GET https://modelprices.xyz/command-pricing
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/modelprices-xyz-command-pricing-table-efa7d4d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mRW-Ca6Fq5gwqBrD4uVLJ

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-command-pricing-table-efa7d4d4
```

Example prompt: What's the cheapest place to run Cohere Command R+ right now — show me input and output token prices across all providers like Bedrock, Azure, Vertex, OpenRouter, and Fireworks, sorted by cost.

## When to prefer this

Use this endpoint when you specifically need to compare inference costs across providers for Cohere's Command model family. Prefer this over a single-model lookup when you want cross-provider comparison or need to find the globally cheapest host. If you need pricing for non-Command models (e.g. GPT, Claude, Llama), use the provider-specific or general model pricing endpoints instead.

## Known failure modes

- Pricing data temporarily stale if hourly refresh is delayed
- Provider temporarily missing from results if upstream source is unavailable
- HTTP 402 if payment of $0.01 USDC is not provided via x402 protocol
- Empty or partial results if a provider's pricing page structure changes between refreshes

## How this service works

Command pricing table: what every Command model costs per token right now — Command A, Command R+, Command R — from Cohere 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 Command inference cost across hosts and pick the cheapest place to run one. Normalized, cross-checked, refreshed hourly.

## Output

A normalized pricing table listing every Command model variant (Command A, Command R+, Command R) with input, output, cache, and batch prices in USD per 1M tokens for each hosting provider (Cohere, AWS Bedrock, Azure, Vertex, OpenRouter, Fireworks), sorted ascending by cost so the cheapest option appears first. Data is refreshed hourly and cross-checked across sources.

## 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-command-pricing-table-efa7d4d4/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)
