Qwen3.7 Plus

Alibaba Qwen chatcodereasoningtool_usevision Long

API ID: qwen/qwen3.7-plus-20260602

Input Price
$0.32
/1M tokens
Output Price
$1.28
/1M tokens
Cached Input
$0.06
Save 80%

About Qwen3.7 Plus

Qwen3 is Alibaba's third-generation model series, delivering significant advances in capability and efficiency. The models feature improved reasoning, coding, and multilingual performance. Qwen3 variants range from 0.6B to 235B parameters with various specializations. For developers seeking cutting-edge Alibaba AI, Qwen3 offers the latest capabilities.

๐Ÿ’ฐ
Price Ranking
#903 lowest price among 1240 Chat models

Model Specifications

Context Length
1.0M
Max Output
131k
Release Date
2026-06-03
Capabilities
chat code reasoning tool_use vision
Input Modalities
textimage
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Code generation, debugging, code review, refactoring
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.53
/month
50 conversations/day, ~500 tokens each
Code Copilot
$4.61
/month
200 completions/day, ~1k tokens each
Customer Service Bot
$16.32
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$22.56
/month
500 analyses/day, ~2k tokens each

Alibaba Qwen Model Lineup

Compare all models from Alibaba Qwen to find the best fit

Model Input Output Context Capabilities
Qwen3.7 Plus Current Free Free 1.0M chat code reasoning tool_use vision
Qwen2.5-VL 7B Instruct Free Free 33k chat vision tool_use
Qwen3 Embedding 0.6B Free Free 8k chat code
Qwen3 Embedding 0.6B Free Free 8k chat code
Qwen2.5 VL 3B Instruct Free Free 64k chat vision code
Qwen2.5 VL 3B Instruct Free Free 64k chat vision code

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

DeepSeek R1 Distill Llama 70B
Input: $0.80
Output: $0.80
Context: 8k
DeepSeek DeepSeek V3.2 Speciale
Input: $0.40
Output: $1.20
Context: 164k
Perceptron Perceptron Mk1
Input: $0.15
Output: $1.50
Context: 33k
Baidu ERNIE 4.5 VL 424B A47B
Input: $0.42
Output: $1.25
Context: 123k

๐Ÿš€ Quick Start

Get started with Qwen3.7 Plus API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="qwen/qwen3.7-plus-20260602",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)