Skip to main content
AIsa is an Alibaba Cloud Qwen Key Account Partner. Use one AIsa API key to access Qwen text, coding, vision, audio, video-understanding, translation, and Wan image models through the same gateway as your other LLMs. All models below use POST /v1/chat/completions. Wan image models are exposed through the chat-compatible model route in the current AIsa catalog and are billed per request.

Supported Alibaba models

Model IDContextCapabilitiesInput / 1MOutput / 1M or requestBest for
qwen-flash1,000,000Audio, Coding, Text, Video, Vision$0.0225$0.1800High-volume multimodal work
qwen-mt-flash1,000,000Text$0.0720$0.2205Fast translation
qwen-mt-lite1,000,000Text$0.0840$0.2520Lightweight translation
qwen-plus-2025-12-011,000,000Audio, Coding, Text, Video, Vision$0.2800$0.8400General multimodal applications
qwen3-coder-480b-a35b-instruct262,144Coding, Text$1.0500$5.2500Maximum Qwen coding capability
qwen3-coder-flash1,000,000Coding, Text$0.2100$1.0500Fast coding throughput
qwen3-coder-plus1,000,000Coding, Text$0.7000$3.5000Coding agents and code review
qwen3-max262,144Audio, Coding, Text, Video, Vision$0.7200$3.6000Strong general Qwen route
qwen3-vl-flash131,072Coding, Text, Video, Vision$0.0350$0.2800Low-cost vision and video understanding
qwen3-vl-flash-2025-10-15131,072Coding, Text, Video, Vision$0.0350$0.2800Pinned Qwen VL Flash version
qwen3-vl-plus131,072Coding, Text, Video, Vision$0.1400$1.1200Stronger document and spatial vision
qwen3.6-plus1,000,000Coding, Text, Video, Vision$0.2760$1.6510Long-context Chinese/bilingual work
qwen3.6-plus-2026-04-02262,144Coding, Text, Vision$0.2760$1.6510Pinned Qwen 3.6 Plus route
qwen3.7-max1,000,000Coding, Text$1.1550$3.4657Frontier Qwen reasoning and agentic coding
wan2.7-imageN/AImage, Text, Vision-$0.030/requestImage generation and editing
wan2.7-image-proN/AImage, Text, Video, Vision-$0.075/requestHigher-quality image and image-to-video work

Quickstart

from openai import OpenAI

client = OpenAI(api_key="YOUR_AISA_API_KEY", base_url="https://api.aisa.one/v1")

response = client.chat.completions.create(
    model="qwen3.7-max",
    messages=[{"role": "user", "content": "Plan a refactor for this Python service."}]
)
print(response.choices[0].message.content)

Common choices

NeedUse
Cheapest high-volume text/multimodalqwen-flash
Dedicated translationqwen-mt-flash or qwen-mt-lite
Best coding balanceqwen3-coder-plus
Fast codingqwen3-coder-flash
Maximum Qwen coding capabilityqwen3-coder-480b-a35b-instruct
Long-context reasoningqwen3.7-max or qwen3.6-plus
Vision/document/video workqwen3-vl-plus or qwen3-vl-flash
Image generation/editingwan2.7-image-pro or wan2.7-image

Data privacy

Qwen requests through AIsa are processed under AIsa’s Alibaba Cloud Key Account enterprise agreement. For compliance documentation, contact us.

Next