# modelprices.xyz Qwen Pricing Table

> modelprices.xyz Qwen 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 per-token pricing for every Qwen model across all major hosting providers, sorted cheapest first, refreshed hourly.

## Facts

- Endpoint: GET https://modelprices.xyz/qwen-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-qwen-pricing-table-a272febe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YYW1chjOruNiJxPYaLgk2

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-qwen-pricing-table-a272febe
```

Example prompt: What's the cheapest place to run Qwen 3 right now — can you pull the latest per-token prices across all providers like Bedrock, Azure, Vertex, OpenRouter, and Fireworks so I can compare input and output costs?

## When to prefer this

Use this endpoint when you need to compare Qwen-family model inference costs across multiple providers in a single call. Prefer it over manually querying each provider's pricing page, or when building cost-optimization logic specifically for Qwen models. It is particularly useful when you need cache and batch pricing alongside standard input/output rates, all normalized to the same USD-per-1M-token unit.

## Known failure modes

- Pricing data temporarily stale if upstream provider APIs are unavailable during refresh cycle
- New Qwen models may not appear immediately after release
- Provider-specific promotional or enterprise pricing not reflected
- Cache/batch pricing missing for providers that do not publish those rates
- HTTP 402 if payment is not included or fails

## How this service works

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

## Output

A normalized table of Qwen models and their per-token costs (input, output, cache, batch in USD per 1M tokens) across all providers that host them — including Alibaba, AWS Bedrock, Azure, Vertex AI, OpenRouter, and Fireworks — sorted from cheapest to most expensive, refreshed hourly.

## 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-qwen-pricing-table-a272febe/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)
