Who this is for: developers and engineering leads choosing models through OpenRouter rankings, not benchmark slides. Bottom line (data through July 25, 2026): Xiaomi Mimo V2.5 tops daily token volume at 1.4T/day; Chinese labs hold about 46% of platform share (up from under 2% a year ago); US labs fell from ~70% to 30-36%. What you get: Top 12 model table, vendor and app leaderboards, pricing comparison, usage-vs-quality barbell analysis, August outlook, a six-step tiered-routing runbook, Python routing example, and FAQ. Builds on our June OpenRouter rankings and pairs with the OpenRouter API guide.
TL;DR — 30-second verdict
Figures below are from OpenRouter as of July 25, 2026. Rankings update daily — verify before citing in production docs.
| Rank | Model | Vendor | Daily tokens | 30-day total |
|---|---|---|---|---|
| 1 | Mimo V2.5 | Xiaomi | 1.4T | 31.2T |
| 2 | DeepSeek V4 Flash | DeepSeek | 943.9B | 23.6T |
| 3 | Hy3 | Tencent | 590B | 23.4T |
| 4 | Nemotron 3 Ultra 550B (free) | NVIDIA | 428.6B | 9T |
| 5 | DeepSeek V4 Pro | DeepSeek | 413.7B | 11.6T |
| 6 | GLM 5.2 | Z.ai | 316.7B | 13.3T |
| 7 | MiniMax M3 | MiniMax | 262.5B | 15.1T |
| 8 | Step 3.7 Flash | StepFun | 204.8B | 5.9T |
| 9 | Kimi K3 | Moonshot AI | 157.6B | 1.6T (fastest rise) |
| 10 | Ling 3.0 Flash | InclusionAI (Ant) | 128.3B | 417.3B |
| 11 | Gemini 3 Flash Preview | 106.3B | 4T | |
| 12 | Claude Sonnet 5 | Anthropic | 99.5B | 3.6T |
Seven of twelve are Chinese-origin. US models still present via NVIDIA's free Nemotron tier, Gemini 3 Flash, and Claude Sonnet 5. Note the volatility: Claude Opus 4.8 ranked inside the top 10 on July 24 data but dropped out of the top 12 by July 25 as Ling 3.0 Flash climbed — proof that weekly reviews beat one-off screenshots.
| Vendor | Origin | Token share (approx.) |
|---|---|---|
| DeepSeek | China | 16-18% (most stable #1) |
| Xiaomi | China | 8-18% (Mimo V2.5 spike) |
| Anthropic | U.S. | 10-15% |
| Tencent | China | 8-13% |
| U.S. | 8-13% | |
| Z.ai | China | 4-7% |
| OpenAI | U.S. | 6-8% |
| NVIDIA | U.S. | ~5% |
| MiniMax | China | 4-8% |
| Moonshot AI | China | 3-4% |
| Alibaba Qwen | China | 1-4% |
Chinese AI models market share combined: ~46%. US labs (OpenAI + Anthropic + Google) sit at roughly 30-36%, down from about 70% in mid-2025. This is pricing math: DeepSeek V4 Flash input runs ~$0.05-$0.14 per million tokens versus GPT-5.5 at ~$5 — a ~35x gap. When open-weight models are good enough for bulk work, developers route real money accordingly.
OpenRouter rankings July 2026 tell you who moves tokens. They do not tell you who wins hard tasks. Spend-by-category data paints a dumbbell:
Anthropic's July 24 Claude Opus 5 launch reinforces the premium side: FrontierBench v0.1 at 43.3% versus GPT-5.6 Sol's 37.5%, pricing unchanged at $5/$25 per 1M tokens (fast tier $10/$50). That is the "we cost more and we're worth it" bet — see our Opus 5 vs Kimi K3 analysis for the compliance subplot on the open-weight side.
Model rankings show which brain is popular. The apps leaderboard shows what that brain does in production.
| Rank | App | Type | Share (approx.) |
|---|---|---|---|
| 1 | Hermes Agent | Personal / CLI agent (Nous Research) | ~45% |
| 2 | Kilo Code | Coding agent | ~13% |
| 3 | OpenClaw | General agent Gateway | ~9% |
| 4 | Claude Code | Coding agent (Anthropic) | ~6% |
| 5 | Descript | Content production | ~4.5% |
| 6 | pi | Agent | ~3.3% |
| 7 | Lemonade | Companion / gaming | ~2.1% |
| 8 | ISEKAI ZERO | Roleplay | ~2.0% |
| 9 | Janitor AI | Roleplay | ~1.8% |
| 10 | Cline | IDE coding agent | ~1.7% |
Three takeaways for builders:
| Model | Input / M | Output / M | Context | Positioning |
|---|---|---|---|---|
| DeepSeek V4 Flash | ~$0.05-0.14 | ~$0.24-0.28 | 1M | Cheapest LLM API for coding at scale; daily volume leader |
| Nemotron 3 Ultra | $0.42 (free tier available) | $2.61 | — | U.S. open-weight; NVIDIA ecosystem |
| MiniMax M3 | $0.10 | $1.21 | Long | Budget multimodal / image input |
| GLM 5.2 | $0.45 | $3.31 | — | Closest open-weight match to Opus-style planning |
| Kimi K3 | ~$3 | ~$15 | 1M | Largest open weights (1.4TB); fastest July riser |
| Claude Opus 5 | $5 ($10 fast) | $25 ($50 fast) | 1M | Closed frontier; FrontierBench leader (7/24) |
bulk, code, agent-long, and critical. One default model for everything is how FinOps teams lose budget.# Tiered OpenRouter routing — July 2026 leaderboard picks
import os
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["OPENROUTER_API_KEY"],
)
ROUTES = {
"bulk": {
"model": "deepseek/deepseek-v4-flash",
"fallback": ["xiaomi/mimo-v2.5", "tencent/hy3"],
},
"code": {
"model": "deepseek/deepseek-v4-flash",
"fallback": ["z-ai/glm-5.2", "anthropic/claude-sonnet-5"],
},
"agent-long": {
"model": "moonshotai/kimi-k3",
"fallback": ["deepseek/deepseek-v4-pro", "minimax/minimax-m3"],
},
"critical": {
"model": "anthropic/claude-opus-5",
"fallback": ["google/gemini-3-flash-preview"],
},
}
def chat(task: str, messages: list[dict]) -> str:
route = ROUTES[task]
models = [route["model"], *route["fallback"]]
resp = client.chat.completions.create(
model=models[0],
extra_body={"models": models}, # OpenRouter fallback chain
messages=messages,
)
return resp.choices[0].message.content
July's OpenRouter story is not simply "Chinese models won." It is margin compression at the volume layer while frontier labs defend hard-task pricing and safety credibility. Chinese open models bought half the traffic with price. US closed models still collect premium spend where mistakes are expensive.
For most developers and tech leads, the useful skill is not memorizing today's #1. It is building architecture that swaps models in hours — because the leader on July 25 may not be the leader in August. Pair monthly OpenRouter reviews with your own eval set (acceptance rate, error rate, latency under real load), and encode the barbell in tiered routing instead of picking one "best LLM July 2026" for every task.
Running Hermes, Kilo Code, OpenClaw, or custom Gateways on a laptop hides three costs: lid-close sleep, network jitter, and scattered API keys. Production agent stacks need a dedicated always-on node. MACCOME Mac cloud hosts provide real macOS, SSH handoff, and environment isolation so multi-provider OpenRouter routing stays stable 24/7. Plans and pricing: Mac mini cloud rental rates.
Sources: OpenRouter official rankings and apps leaderboard, OpenRouter State of AI (a16z), Anthropic Opus 5 release, third-party mirrors (tokenmaxxing, presenc.ai). All figures as of July 25, 2026 unless noted.
FAQ
What is the most popular model on OpenRouter in July 2026?
By daily token volume as of July 25: Xiaomi Mimo V2.5 (1.4T/day), then DeepSeek V4 Flash (943.9B) and Tencent Hy3 (590B). By weekly vendor share, DeepSeek remains the most stable #1 at roughly 16-18%. Live data: openrouter.ai/rankings.
Are OpenRouter rankings explained as a quality leaderboard?
No. They rank paid token throughput — developers voting with wallets. For best LLM July 2026 on hard tasks, look at spend on classification and reasoning (Claude Sonnet 4.6, Opus 4.7, GPT-5.5) and vendor benchmarks like FrontierBench, not daily volume alone. Our June rankings deep-dive covers the same volume-vs-quality split with H2 context.
What is the cheapest LLM API for coding right now?
DeepSeek V4 Flash at roughly $0.05-$0.14 input and $0.24-$0.28 output per million tokens, with 1M context. It leads July daily volume and fits bulk agentic coding. Use GLM 5.2 when you need stronger open-weight planning; escalate to Claude Opus 5 only on steps cheaper models fail.
Does 46% Chinese AI model market share mean replace all US models?
No. Route by task tier: Chinese open models for bulk chat, roleplay, and routine code; US frontier models for classification, compliance, and high-stakes agent decisions. Token share and dollar spend tell different stories — Anthropic still captures premium spend on hard workloads even at lower volume.
How do I run tiered OpenRouter routing 24/7 in production?
Deploy a Gateway with task-tagged primaries and fallbacks on a dedicated Mac cloud host so long agent sessions survive sleep and network blips. See MACCOME Mac cloud rental plans for M4/M4 Pro node configs and monthly pricing.
What changed since the June OpenRouter rankings?
Mimo V2.5 overtook DeepSeek V4 Flash for daily #1; Kimi K3 entered the top 12 with the fastest 30-day rise; Claude Opus 5 shipped July 24 as the new premium anchor. Compare month-over-month in our June 2026 rankings article.