Back to Models

Qwen3 Coder 480B

qwenqwen/qwen3-coder-480b

Qwen3's largest coding-specialized model (480B total, 35B active, 160 experts, 8 active per token MoE). State-of-the-art code generation and understanding. Non-thinking mode only.

Qwen3-Coder-480B-A35B-Instruct is Alibaba Qwen's flagship open-weight coding model: a 480B-total / 35B-active Mixture-of-Experts model built for agentic coding, repository-scale understanding, and tool use. Qwen describes it as its most agentic code model to date, with state-of-the-art open-model results on agentic coding, browser-use, and tool-use tasks and performance positioned against Claude Sonnet-class systems.

For TheRouter users, this is a practical default candidate for AI coding teams that want a large open-weight coder behind Cursor, Cline, Claude Code-style routers, or any OpenAI-compatible client. It exposes 256K native context, can be extended to 1M tokens with YaRN in self-hosted setups, and is explicitly non-thinking: it does not emit <think> blocks, so production clients can treat its responses as direct coding output.

Best for
  • β€’ Agentic coding workflows β€” multi-file edits, tool calls, test feedback loops, and long-horizon code repair
  • β€’ Repository-scale context β€” 256K native context for PR review, migration planning, dependency analysis, and large-file reasoning
  • β€’ OpenAI-compatible coding clients β€” Cursor-like tools, Cline, Qwen Code, and custom SDK integrations through TheRouter
  • β€’ Teams that need open-weight fallback or self-host optionality without dropping to a small coding model
Reach for something else if
  • β€’ Native image, audio, or video input β€” Qwen3-Coder-480B is text-in / text-out; route multimodal work to a vision-capable model
  • β€’ Deep explicit reasoning UX β€” it is intentionally non-thinking and does not return <think> blocks
  • β€’ Ultra-low-cost autocomplete or high-QPS snippets β€” use qwen/qwen3-coder-30b or another small coder when latency and margin dominate
Context Length
200K
Max Output
66K
Input Priceper 1M tokens
$1.62/ 1M tokens
Output Priceper 1M tokens
$8.10/ 1M tokens

Modalities

text→text

Pricing Breakdown

TypeRate
Input$1.62 / 1M tokens
Output$8.10 / 1M tokens

Supported Parameters

temperaturemax_tokenstop_ptoolstool_choiceresponse_formatstop

Specifications

ArchitectureMixture-of-Experts causal language modelhuggingface.co β†—verified
Parameters480B total / 35B activatedhuggingface.co β†—verified
Experts160 experts; 8 activated per tokenhuggingface.co β†—verified
Native context262,144 tokens; extendable to 1M with YaRN in self-hosted deploymentsqwenlm.github.io β†—verified
Output modeNon-thinking only; does not generate <think> blockshuggingface.co β†—verified
Training emphasis7.5T pretraining tokens, about 70% code; code RL and long-horizon agent RLqwenlm.github.io β†—verified

Benchmarks

BenchmarkDistributionScoreSource
SWE-bench Verified
Reported by Together AI for Qwen3-Coder-480B-A35B-Instruct; use as a secondary-source benchmark until an official numeric table is reachable.
69.6%%together.ai β†—
Aider Polyglot
Multilingual code-editing benchmark; secondary public report, not an official Qwen table in the fetched sources.
61.8%%medium.com β†—
Agentic Coding / Browser-Use / Tool-Use
Official qualitative claim from Qwen announcement; no exact score exposed in the fetched page text.
State-of-the-art among open modelsqwenlm.github.io β†—

API Usage Examples

Use the global api.therouter.ai endpoint shown below for new integrations; the legacy China accelerated endpoint is retired.

cURL
curl https://api.therouter.ai/v1/chat/completions   -H "Content-Type: application/json"   -H "Authorization: Bearer $THE_ROUTER_API_KEY"   -d '{
    "model": "qwen/qwen3-coder-480b",
    "messages": [
      {"role": "user", "content": "Summarize the key points from this input."}
    ]
  }'

Chat completion

Use the standard OpenAI-compatible chat completions endpoint. This model is strongest when the prompt contains concrete files, failing tests, or explicit coding constraints.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3-coder-480b",
    "messages": [
      {"role": "system", "content": "You are a senior software engineer. Return concise patches and explain tradeoffs."},
      {"role": "user", "content": "Refactor this TypeScript function to remove duplication and preserve behavior: ..."}
    ],
    "temperature": 0.7,
    "max_tokens": 4096
  }'

More from qwen

Similar models

Cross-provider sibling models

News & changes

2026-02-28

Qwen3-Coder-Next technical report compares the new 80B/3B model to Qwen3-Coder-480B

The Qwen3-Coder-Next report frames 480B-A35B as the previous flagship coder and shows Qwen continuing to optimize coding-agent performance per active parameter, not just total model size.

re-authored by TheRouterarxiv.org β†—
2025-07-22

Qwen launches Qwen3-Coder-480B-A35B-Instruct and Qwen Code

Qwen introduced its flagship 480B/35B-active coding MoE alongside Qwen Code, a Gemini Code-derived CLI adapted with Qwen-specific prompts and function-calling protocols.

re-authored by TheRouterqwenlm.github.io β†—
2025-07-22

Hugging Face card publishes architecture and non-thinking-mode details

The model card documents 62 layers, 96 Q heads / 8 KV heads, 160 experts with 8 active, 262,144-token native context, and the requirement that the model only runs in non-thinking mode.

re-authored by TheRouterhuggingface.co/Qwen β†—

Frequently asked

Is Qwen3-Coder-480B a thinking model?

No. Qwen explicitly states that this checkpoint supports only non-thinking mode and does not generate <think></think> blocks. That is useful for coding clients because responses are direct, but it also means you should not build UX around visible reasoning traces.

How much context does it support?

The native context length is 262,144 tokens. Qwen's launch post says the model can be extended up to 1M tokens with YaRN, but that is a deployment/configuration path for self-hosters rather than a guarantee that every hosted route exposes 1M context.

Can I use it from Cursor, Cline, or Claude Code-style tools?

Yes, if the client can speak OpenAI-compatible chat completions or route through a compatible proxy. The Qwen launch post specifically discusses Qwen Code, Cline, and Claude Code-style integration paths; through TheRouter, the simplest path is the OpenAI-compatible /v1/chat/completions endpoint with model qwen/qwen3-coder-480b.

What makes it different from qwen/qwen3-coder-30b?

480B is the large flagship: 480B total parameters and 35B active parameters. The 30B sibling is much cheaper and faster, with 30B total / 3B active parameters. Use 480B for difficult multi-step repository work; use 30B for cheaper autocomplete, small edits, and high-throughput IDE assistance.

Can I self-host Qwen3-Coder-480B?

Yes, the weights are published and Qwen provides BF16 and FP8 checkpoints. The practical constraint is hardware and serving-stack support: use recent SGLang or vLLM with the qwen3_coder tool-call parser, and reduce context length if memory pressure prevents a full 256K deployment.

Fact ledger β€” every claim on this page traces here
sourceURLretrieved
Architecturehuggingface.co β†—2026-06-02verified
Parametershuggingface.co β†—2026-06-02verified
Expertshuggingface.co β†—2026-06-02verified
Native contextqwenlm.github.io β†—2026-06-02verified
Output modehuggingface.co β†—2026-06-02verified
Training emphasisqwenlm.github.io β†—2026-06-02verified
SWE-bench Verifiedtogether.ai β†—2026-06-02to verify
Aider Polyglotmedium.com β†—2026-06-02single source
Agentic Coding / Browser-Use / Tool-Useqwenlm.github.io β†—2026-06-02verified
Qwen3-Coder-Next technical report compares the new 80B/3B model to Qwen3-Coder-480Barxiv.org β†—2026-06-02verified
Qwen launches Qwen3-Coder-480B-A35B-Instruct and Qwen Codeqwenlm.github.io β†—2026-06-02verified
Hugging Face card publishes architecture and non-thinking-mode detailshuggingface.co/Qwen β†—2026-06-02verified
Is Qwen3-Coder-480B a thinking model?huggingface.co β†—2026-06-02to verify
How much context does it support?qwenlm.github.io β†—2026-06-02to verify
Can I use it from Cursor, Cline, or Claude Code-style tools?qwenlm.github.io β†—2026-06-02to verify
What makes it different from qwen/qwen3-coder-30b?github.com β†—2026-06-02to verify
Can I self-host Qwen3-Coder-480B?huggingface.co β†—2026-06-02to verify
Help & contact