Back to Models

Qwen3.6 Max Preview

![Alibaba](https://artificialanalysis.ai/img/logos/alibaba_small.svg)Alibaba
52/ 57

Intelligence Score

Intelligence

52

#12 of 203 (top 6%)

Speed

34 tok/s

#126 of 131

Price

$2.92

per M tokens

#110 cheapest of 136

Context Window

256K

tokens

Latency: 3ms (#99)

Score Breakdown

Quality Score87%
Speed Score5%
Cost Score74%

Use This Model

Claude Code

claude --model qwen3-6-max

API (cURL)

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -d '{
    "model": "qwen3-6-max",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Vercel AI SDK

import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";

const { text } = await generateText({
  model: openrouter("qwen3-6-max"),
  prompt: "Hello",
});
Back to Models