Qwen: Qwen3.7 Max
qwen/qwen3.7-max
Created Jun 2, 2026|1M context|$1.25/M input tokens|$3.75/M output tokens
Intel TDX
Qwen3.7-Max is the flagship model in Alibaba's Qwen3.7 series. It supports text input and output and is designed for agent-centric workloads, with particular strengths in coding, office and productivity tasks,...
Providers for Qwen: Qwen3.7 Max
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
0g
Total Context
1M
Input
$1.25/M
Output
$3.75/M
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.7-max",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})