Qwen3 235B A22B Instruct 2507

Alibaba Qwen chatreasoningtool_usecode Long

API ID: qwen/qwen3-235b-a22b-07-25

Input Price
$0.07
/1M tokens
Output Price
$0.46
/1M tokens

About Qwen3 235B A22B Instruct 2507

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
#377 lowest price among 599 Chat models

Model Specifications

Context Length
262k
Max Output
โ€”
Release Date
2025-07-21
Capabilities
chat reasoning tool_use code
Input Modalities
text
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Code generation, debugging, code review, refactoring
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)
  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.17
/month
50 conversations/day, ~500 tokens each
Code Copilot
$1.45
/month
200 completions/day, ~1k tokens each
Customer Service Bot
$5.23
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$7.15
/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 235B A22B Instruct 2507 Current Free Free 262k chat reasoning tool_use code
Qwen2.5-VL 7B Instruct Free Free 33k chat vision tool_use
Qwen2.5 VL 3B Instruct Free Free 64k chat vision code
Qwen 2 7B Instruct Free Free 33k chat code
Qwen 2 72B Instruct Free Free 33k chat code
Qwen 1.5 72B Chat Free Free 33k chat code

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

DeepSeek DeepSeek V3.2 Exp
Input: $0.21
Output: $0.32
Context: 164k
DeepSeek R1 Distill Qwen 32B
Input: $0.27
Output: $0.27
Context: 131k
Mistral Mistral Tiny
Input: $0.25
Output: $0.25
Context: 33k
OpenAI GPT-4.1 Nano
Input: $0.10
Output: $0.40
Context: 1.0M

๐Ÿš€ Quick Start

Get started with Qwen3 235B A22B Instruct 2507 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-235b-a22b-07-25",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)