TokenLX
QWEN

alibaba/qwen-turbo

1M  context$0.04/M tokens input$0.09/M tokens output5.59B  tokens servedText

Smallest, cheapest Qwen. Good for classification, routing, and high-volume light tasks in Chinese.

Key strengths

  • Very low cost
  • High QPS
  • Decent Chinese
  • Short-form task friendly

Use cases

  • Intent classification
  • Moderation
  • Extraction
  • Keyword tagging
chinesecheapfast

Alibaba's alibaba/qwen-turbo is a frontier text generation model in the Qwen family. It excels at complex reasoning, agentic workflows, code generation, and long-form writing tasks, with native support for streaming, tool calling, JSON mode, and multi-turn conversations.

The model handles long-context inputs gracefully and is particularly effective for software engineering, multi-step research, and end-to-end project execution. Its tokenizer and pricing are optimized for high-throughput production workloads, with a competitive cost profile relative to other models in its tier.

alibaba/qwen-turbo is fully OpenAI-compatible — drop in your existing OpenAI Python or Node SDK and switch `baseURL` to `https://api.tokenlx.ai`. TokenLX transparently routes your requests to the optimal provider endpoint while preserving streaming, function-calling, and structured-output semantics.

Performance

Compare different providers across TokenLX · All locations.

Throughput
66
tok/s
Latency
131
ms
E2E Latency
200
ms
Tool Call Errors
0.07
%
Output Errors
0.40
%
Time to First Token
102
ms

Effective Pricing

Actual cost per million tokens across providers over the past 7 days.

Input
$0.04
per 1M tokens
7d agotoday
Output
$0.09
per 1M tokens
7d agotoday
Cache read
$0.0089
per 1M tokens
7d agotoday
Cache write
$0.04
per 1M tokens
7d agotoday
Reasoning
$0.44
per 1M tokens
7d agotoday

Recent activity

Total usage per day on TokenLX (last 30 days).

Prompt
1.57B
Completion
4.02B
Reasoning
481.95M
30d ago15d agotoday

Sample code & API

TokenLX normalizes requests and responses across providers. Use any OpenAI SDK or our native SDK.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.tokenlx.ai/v1",
    api_key="sk-tokenlx-...",
)

# Non-streaming
response = client.chat.completions.create(
    model="qwen-turbo",
    messages=[
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello!"},
    ],
)
print(response.choices[0].message.content)

# Streaming
stream = client.chat.completions.create(
    model="qwen-turbo",
    messages=[{"role": "user", "content": "Tell me a story"}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="", flush=True)

Replace sk-aihubrouter-… with your key from the dashboard.