Skip to main content

Overview

Alibaba Cloud Model Studio (International) provides 1 million tokens per model, giving you extensive access to their Qwen family of language models, including both open-source and proprietary variants.

Trial Credits

1 million tokens per model

Models

Multiple Qwen models available

Available Models

Alibaba Cloud offers access to the Qwen family of models, developed by Alibaba Cloud and known for strong multilingual capabilities.
View the complete list of available models at alibabacloud.com/en/product/modelstudio

Qwen Model Family

  • Qwen 3: Latest generation with improved performance
  • Qwen 2.5: Advanced reasoning and coding capabilities
  • Qwen VL: Vision-language multimodal models
  • Qwen Coder: Specialized for code generation
  • Qwen Math: Optimized for mathematical reasoning

Per-Model Token Allocation

You receive 1 million tokens for EACH model, allowing you to thoroughly test different models for your specific use case.

Getting Started

1. Sign Up

Visit bailian.console.alibabacloud.com and create an international account.

2. Access Model Studio

Navigate to Model Studio in your Alibaba Cloud console.

3. Get Your API Key

Generate an API key from the console to start making requests.

4. Make API Calls

import openai

client = openai.OpenAI(
    api_key="YOUR_ALIBABA_API_KEY",
    base_url="https://dashscope.aliyuncs.com/compatible-mode/v1"
)

response = client.chat.completions.create(
    model="qwen-turbo",
    messages=[{
        "role": "user",
        "content": "What is the capital of France?"
    }]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.ALIBABA_API_KEY,
  baseURL: 'https://dashscope.aliyuncs.com/compatible-mode/v1'
});

const response = await client.chat.completions.create({
  model: 'qwen-turbo',
  messages: [{
    role: 'user',
    content: 'What is the capital of France?'
  }]
});

console.log(response.choices[0].message.content);
curl https://dashscope.aliyuncs.com/compatible-mode/v1/chat/completions \
  -H "Authorization: Bearer YOUR_ALIBABA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-turbo",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

Key Features

Multilingual Excellence

Qwen models excel at Chinese and English, with strong performance across many other languages.

Specialized Models

Qwen Coder

Optimized for code generation and understanding

Qwen VL

Vision-language multimodal capabilities

Qwen Math

Enhanced mathematical reasoning

Qwen Turbo

Fast inference for real-time applications

Use Cases

  • Multilingual Applications: Build apps supporting Chinese and English
  • Code Generation: Leverage specialized coding models
  • Vision Tasks: Process images with Qwen VL models
  • Mathematical Problems: Solve complex math with Qwen Math
  • Enterprise Applications: Reliable models for production use

Resources

Model Studio Console

Access the platform

Model Studio Info

Learn more about models
This is the International Alibaba Cloud service. Make sure you’re accessing the correct regional endpoint.

Build docs developers (and LLMs) love