Qwen: Qwen3 Coder 480B A35B
GPU TEE
qwen/qwen3-coder-480b-a35b-instruct
Created Nov 28, 2025|262K context|$2.00/M input tokens|$2.00/M output tokens
Intel TDXNVIDIA CC
Qwen3-Coder-480B-A35B-Instruct is a Mixture-of-Experts (MoE) code generation model developed by the Qwen team. It is optimized for agentic coding tasks such as function calling, tool use, and long-context reasoning over repositories. The model features 480 billion total parameters, with 35 billion active per forward pass (8 out of 160 experts).
Providers for Qwen: Qwen3 Coder 480B A35B
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
tinfoil
Input Price
$2.00
Output Price
$2.00
Total Context
262K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "qwen/qwen3-coder-480b-a35b-instruct",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})