/install openrouter-models
OpenRouter Models Analyzer
Pulls the live model catalog from https://openrouter.ai/api/v1/models,
normalizes prices to $ / 1M tokens, and lets you filter / sort / compare
models across providers.
Quick start
# 1. Fetch the catalog (no API key needed — endpoint is public)
python3 scripts/fetch_models.py
# -> writes models_raw.json next to the script
# 2. Analyze
python3 scripts/analyze.py --family anthropic/
python3 scripts/analyze.py --free --has-image
python3 scripts/analyze.py --has-cache --sort input_cache_read --limit 10
python3 scripts/analyze.py --has-image --min-ctx 1000000 --sort prompt --limit 20
The analyze.py script does not need network access — it works off the cached
models_raw.json. Re-run fetch_models.py to refresh.
Tip: Always run fetch_models.py first to ensure the data is current.
What you get per model
id,name,context_lengthmodality(legacy string) plusinput_modalities/output_modalitiesliststokenizer- 8 normalized prices in $ / 1M tokens (or $ / 1M calls for
web_search):prompt,completion,input_cache_read,input_cache_write,web_search,internal_reasoning,image,audio
See references/pricing_fields.md for the full schema and unit gotchas
(notably that web_search is per call, not per token, and -1 means
variable pricing on router models).
Filter flags
| Flag | Effect |
|---|---|
--family PREFIX |
id starts with PREFIX, e.g. anthropic/, openai/, qwen/ |
--keyword K |
case-insensitive substring match on id or name |
--min-ctx / --max-ctx |
context-length window |
--has-image / --has-audio / --has-video / --has-file |
input modality |
--outputs-image |
output modality contains image |
--free |
prompt == 0 AND completion == 0 |
--has-cache |
input_cache_read is priced |
--has-reasoning-price |
internal_reasoning is priced |
Sort keys
id (default), prompt, completion, input_cache_read,
input_cache_write, web_search, internal_reasoning, ctx.
Missing values sort to the end regardless of direction.
Use --desc to sort in descending order (e.g. most expensive first).
Output formats
- Default: aligned text table with all 8 pricing columns
--json: structured JSON output (ideal for programmatic consumption)--stats: print coverage statistics (how many models have each pricing field, modality breakdown)
Typical analyses
# Cheapest cache_read among vision-capable 1M-context models
python3 scripts/analyze.py --has-image --min-ctx 1000000 \
--has-cache --sort input_cache_read --limit 10
# All free models that take image input
python3 scripts/analyze.py --free --has-image
# Most expensive models (per prompt)
python3 scripts/analyze.py --sort prompt --desc --limit 15
# Reasoning-priced models
python3 scripts/analyze.py --has-reasoning-price
# Models with image output (image generators)
python3 scripts/analyze.py --outputs-image
# JSON output for programmatic use
python3 scripts/analyze.py --family anthropic/ --json
# Coverage statistics
python3 scripts/analyze.py --stats
Provider cheat sheet
See references/model_families.md for the full list of provider prefixes
and naming conventions (-thinking, -vl, :free, etc.).
Common ones:
anthropic/,openai/,google/,x-ai/— frontiermeta-llama/,deepseek/,qwen/,mistralai/,nvidia/,microsoft/,amazon/openrouter/auto,openrouter/fusion— variable-price routers (-1)
Notes & caveats
web_searchis per call, not per token — the script displays it as $/1M calls (i.e. the value is dollars per 1M invocations).-1forprompt/completionmeans variable pricing (router models). The script filters these out of numeric columns and renders-.- Not all models expose every pricing field. Use
--statsto see current coverage for each field. modalityis the legacy compact string; theinput_modalities/output_modalitieslists are canonical.top_provider.context_lengthmay be smaller than the model's owncontext_lengthfor a specific provider endpoint.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install openrouter-models - After installation, invoke the skill by name or use
/openrouter-models - Provide required inputs per the skill's parameter spec and get structured output
What is Openrouter Models Pricing?
拉取并分析 OpenRouter 模型目录——涵盖 8 项定价(prompt / completion / cache_read / cache_write / web_search / reasoning / image / audio)、上下文长度及输入输出模态(text、image、file、audio、v... It is an AI Agent Skill for Claude Code / OpenClaw, with 0 downloads so far.
How do I install Openrouter Models Pricing?
Run "/install openrouter-models" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openrouter Models Pricing free?
Yes, Openrouter Models Pricing is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Openrouter Models Pricing support?
Openrouter Models Pricing is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openrouter Models Pricing?
It is built and maintained by Rytia (@zzfly256); the current version is v1.0.0.