Skip to main content
Getting Started

Build with Qwen Cloud

AI models for text, vision, speech, and image & video generation.

Developer quickstart

Make your first API request in minutes. Seamlessly integrate with any OpenAI SDK or client.

Get started →
import os
from openai import OpenAI

client = OpenAI(
  api_key=os.getenv("DASHSCOPE_API_KEY"),
  base_url="https://dashscope-intl.aliyuncs.com/compatible-mode/v1"
)
completion = client.chat.completions.create(
  model="qwen3.6-plus",
  messages=[{"role": "user", "content": "Summarize the benefits of solar energy in three bullet points."}]
)
print(completion.choices[0].message.content)

Models

Start with qwen3.6-plus for complex reasoning and coding. Choose qwen3.5-flash for speed and cost efficiency. All models share the same API — just change the model parameter. Browse all models →

Start building


Pricing | API Reference | Free Quota