Alibaba Qwen User Agents

Complete guide to Alibaba Qwen (Tongyi Qianwen 通义千问) - Multimodal LLM with e-commerce integration

Back to Documentation

Alibaba Qwen (通义千问, Tongyi Qianwen) is a multimodal AI assistant developed by Alibaba Cloud. With over 40 million monthly active users, Qwen is deeply integrated into Alibaba's massive e-commerce ecosystem, including Taobao, Tmall, and Alibaba Cloud services.

About Alibaba Qwen

Company

Alibaba Cloud (阿里云)

Founded

2023

Latest Model

Qwen2.5-Max

Context Window

Up to 32K tokens

Website

tongyi.aliyun.com

Key Feature

Multimodal + E-commerce

🛍️ E-commerce Integration

Qwen is integrated into Alibaba's massive e-commerce ecosystem, including Taobao (淘宝), Tmall (天猫), and AliExpress. This gives it unique capabilities for shopping, product recommendations, and business applications.

What is Alibaba Qwen's Main User Agent String?

Qwen uses multiple user agent identifiers across Alibaba's various services:

Primary Qwen Crawler

Mozilla/5.0 (compatible; QwenBot/1.0; +https://tongyi.aliyun.com/bot)

Main user agent for Qwen's web crawling and content access operations.

Tongyi Bot Crawler

Mozilla/5.0 (compatible; TongyiBot/1.0; +https://tongyi.aliyun.com)

Alternative user agent using the Chinese name Tongyi (通义).

Additional Alibaba User Agents

Tongyi-Crawler
AlibabaBot
AliyunBot

Additional crawler patterns used across Alibaba's cloud and AI services.

Detection Patterns

To detect Alibaba Qwen crawlers in your web analytics:

JavaScript Detection

// Detect Alibaba Qwen user agents
const isQwen = /QwenBot|TongyiBot|Tongyi-Crawler|AlibabaBot|AliyunBot/i.test(navigator.userAgent);

if (isQwen) {
  console.log('Alibaba Qwen crawler detected');
  // Track visit, customize for e-commerce content
}

Server-Side Detection (Node.js)

// Express.js middleware
app.use((req, res, next) => {
  const userAgent = req.headers['user-agent'] || '';
  const isQwenBot = /QwenBot|TongyiBot|Tongyi-Crawler|AlibabaBot|AliyunBot/i.test(userAgent);
  
  if (isQwenBot) {
    console.log('Alibaba Qwen crawler detected:', userAgent);
    req.isQwenBot = true;
    // Can customize response for Alibaba's ecosystem
  }
  next();
});

What Makes Qwen Unique Among Chinese LLMs?

Qwen stands out with its multimodal capabilities and e-commerce integration:

🎨 Multimodal Excellence

Qwen supports multiple modalities:

  • Qwen-VL: Vision + Language (image understanding)
  • Qwen-Audio: Audio processing and generation
  • Qwen-Chat: Text conversations
  • Qwen-Code: Programming assistance

🛒 E-commerce Integration

Deeply integrated into Taobao, Tmall, and AliExpress for product search, recommendations, customer service, and shopping assistance. Processes millions of product listings and reviews.

☁️ Cloud Infrastructure

Built on Alibaba Cloud (阿里云), one of the world's largest cloud providers. Offers robust enterprise-grade APIs and deployment options with global reach.

📖 Open Source Friendly

Alibaba has released several open-source Qwen models (Qwen-72B, Qwen-14B, Qwen-7B) on Hugging Face, making it popular with developers and researchers.

Market Position & Adoption

Qwen has strong adoption across business and e-commerce sectors:

40M+

Monthly Active Users

~12%

Chinese LLM Market Share

#3

Largest in China

How Qwen Accesses Web Content

Qwen crawls web content for various purposes across Alibaba's ecosystem:

🛍️ Product Information

Crawls product pages, reviews, and specifications to enhance shopping recommendations and answer product-related queries in Alibaba's e-commerce platforms.

💬 Conversational Queries

Accesses current web content when users ask questions requiring up-to-date information, particularly for news, trends, and recent developments.

🏢 Business Intelligence

Gathers business data, market trends, and competitive intelligence to support Alibaba Cloud's enterprise customers and B2B services.

🎓 Knowledge Enhancement

Regular crawling maintains updated knowledge across technical documentation, industry news, and educational content for better response quality.

How Do I Block Qwen from Crawling My Website?

Control Qwen's access using robots.txt directives:

Block All Qwen/Alibaba Crawlers

To completely prevent Qwen from accessing your website:

# Block all Alibaba Qwen crawlers
User-agent: QwenBot
User-agent: TongyiBot
User-agent: Tongyi-Crawler
User-agent: AlibabaBot
User-agent: AliyunBot
Disallow: /

Selective Access for E-commerce

Allow product pages while protecting other content:

# Allow e-commerce content, block private areas
User-agent: QwenBot
User-agent: TongyiBot
Disallow: /admin/
Disallow: /user/
Disallow: /checkout/
Disallow: /api/
Allow: /products/
Allow: /catalog/
Allow: /reviews/
Allow: /specifications/

Business Content Only

If targeting business/B2B users, allow only business content:

# Allow business content for Alibaba Cloud users
User-agent: QwenBot
User-agent: AliyunBot
Allow: /enterprise/
Allow: /solutions/
Allow: /case-studies/
Allow: /whitepaper/
Disallow: /

Optimizing Content for Qwen

Best practices for maximizing visibility in Qwen and Alibaba's ecosystem:

🛒 E-commerce Content

  • Use structured product data (schema.org)
  • Include detailed specifications and features
  • Add high-quality product images
  • Include customer reviews and ratings
  • Provide clear pricing information

🎨 Multimodal Content

  • Optimize images with descriptive alt text
  • Use descriptive file names for media
  • Include video content where relevant
  • Provide transcripts for audio/video
  • Use image captions effectively

🏢 Business Content

  • Clear company information and contact details
  • Detailed service/product descriptions
  • Case studies and success stories
  • Industry-specific terminology
  • B2B pricing and packages

🇨🇳 Chinese Market

  • Simplified Chinese language support
  • RMB pricing and local payment methods
  • Chinese social media integration
  • Mobile-first responsive design
  • Alibaba ecosystem compatibility

Qwen API Integration

Alibaba provides comprehensive APIs through DashScope platform:

API Configuration

// Qwen API endpoint (OpenAI-compatible)
const API_ENDPOINT = 'https://dashscope.aliyuncs.com/api/v1';

// Available models
const MODELS = {
  'qwen-max': 'Qwen Max',              // Most capable
  'qwen-plus': 'Qwen Plus',            // Balanced
  'qwen-turbo': 'Qwen Turbo',          // Fast
  'qwen-vl-max': 'Qwen VL Max',        // Vision
  'qwen-audio': 'Qwen Audio',          // Audio
};

// Example API call
const callQwen = async (message) => {
  const response = await fetch(
    `${API_ENDPOINT}/services/aigc/text-generation/generation`,
    {
      method: 'POST',
      headers: {
        'Authorization': `Bearer ${DASHSCOPE_API_KEY}`,
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({
        model: 'qwen-max',
        input: {
          messages: [
            { role: 'user', content: message }
          ]
        },
        parameters: {
          temperature: 0.7
        }
      })
    }
  );
  
  return await response.json();
};

💡 API Access

Access Qwen APIs through DashScope platform. Requires Alibaba Cloud account. International users can register, though some features may be China-focused.

Use Cases

Qwen's unique capabilities make it ideal for specific applications:

🛍️ E-commerce & Retail

Product recommendations, customer service chatbots, inventory management, market analysis, and shopping assistance integrated with Alibaba's platforms.

🏢 Enterprise Solutions

Business intelligence, document processing, customer analytics, supply chain optimization, and internal knowledge management for large organizations.

🎨 Creative Applications

Image generation and understanding, video analysis, creative writing, advertising copy, and multimedia content creation with multimodal capabilities.

💻 Development & Coding

Code generation, debugging assistance, technical documentation, API integration help, and software development support with Qwen-Code model.

Tracking Qwen Visits with xSeek

xSeek provides comprehensive tracking for Alibaba Qwen crawler activity:

📊 Multi-Platform Tracking

Track QwenBot, TongyiBot, and other Alibaba crawlers separately to understand access patterns across different services.

🛒 E-commerce Insights

Monitor how product pages perform with Qwen, track which e-commerce content gets crawled most, and optimize for shopping queries.

📈 Visibility Analysis

Understand your content's visibility in Qwen responses and track citation frequency across Alibaba's ecosystem.

🔔 Business Alerts

Receive notifications when crawling patterns change or when your products/services get featured in Qwen recommendations.

FAQ

What is Alibaba Qwen's main user agent string?

Alibaba Qwen uses 'Mozilla/5.0 (compatible; QwenBot/1.0; +https://tongyi.aliyun.com/bot)' as its primary user agent for web crawling and content access.

What makes Qwen unique among Chinese LLMs?

Qwen excels in multimodal capabilities, supporting text, images, audio, and video. It's deeply integrated with Alibaba's e-commerce ecosystem (Taobao, Tmall, AliExpress), making it ideal for business and shopping applications.

How do I block Qwen from crawling my website?

Add 'User-agent: QwenBot', 'User-agent: TongyiBot', and 'User-agent: Tongyi-Crawler' followed by 'Disallow: /' to your robots.txt file to block all Alibaba Qwen crawlers.

Should I optimize for Qwen if I run an e-commerce site?

Absolutely! If you sell products online, especially targeting Chinese consumers, optimizing for Qwen can significantly increase your visibility in Alibaba's ecosystem. Qwen powers shopping recommendations across Taobao, Tmall, and related platforms.

Are Qwen's open-source models the same as the API?

Alibaba has released several open-source Qwen models (available on Hugging Face), but the API versions (Qwen-Max, Qwen-Plus) are generally more capable and feature-rich. The open-source models are great for research and self-hosting.

Related Chinese LLM User Agents

Learn about other Chinese AI user agents:

Related User Agents

Learn about other AI user agents:

Track Alibaba Qwen & Chinese LLMs

Monitor Alibaba Qwen crawler visits, optimize for e-commerce AI search, and maximize your visibility in China's largest shopping ecosystem with xSeek.