Skip to content

Rate limits

Model Studio enforces rate limits to ensure fair use across all RAM users, workspaces, and API keys under one Alibaba Cloud account. Requests that exceed a limit are rejected; wait for the limit to reset before retrying.

Rules

  • Account-level limits: Rate limits apply at the Alibaba Cloud account level. All RAM users, workspaces, and API keys under the account share the same limit.

  • Model-specific limits: Each model has an independent rate limit. See the tables below for details.

FAQ

Why is rate limiting triggered?

Check the error message to identify which limit was hit:

  • Requests rate limit exceeded or You exceeded your current requests list: The Requests Per Minute (RPM) limit was triggered.

  • Allocated quota exceeded or You exceeded your current quota: The Tokens Per Minute (TPM) limit was triggered.

  • Request rate increased too quickly: A burst in request frequency triggered system stability protection --- even if RPM or TPM limits were not reached.

  • For other errors, see the Error messages.

In addition to RPM and TPM, the service may enforce per-second limits: Requests Per Second (RPS = RPM/60) and Tokens Per Second (TPS = TPM/60). Request bursts can trigger rate limiting even when total calls are within per-minute limits.

How to view model call usage?

One hour after you call a model, go to the Monitoring (Singapore or Beijing) page. Set the query conditions, such as the time range and workspace. Then, in the Models area, find the target model and click Monitor in the Actions column to view the model's call statistics. For more information, see the Monitoring document.

Data is updated hourly. During peak periods, there may be an hour-level latency.

How long does it take to recover after a rate limit is triggered?

The limit typically resets within one minute. If other errors occur, see Error messages for solutions.

How to avoid rate limiting?

  1. Choose a model with a higher rate limit: Stable and latest versions have higher rate limits than older snapshot versions.

  2. Optimize your request strategy

    • Adjust call frequency : If you receive a Requests rate limit exceeded or You exceeded your current requests list error, reduce how often you call the API.

    • Reduce token consumption : If you receive an Allocated quota exceeded or You exceeded your current quota error, shorten your input or limit your output length.

    • Smooth request rate : If you receive a Request rate increased too quickly error, distribute requests evenly across time windows. Use uniform scheduling, exponential backoff, or request queue buffering to avoid sudden spikes.

  3. Add a backup model

    When a rate limit error occurs, switch to a backup model to continue generation. This reduces the failure rate and improves throughput. The following code retries with qwen-plus-2025-07-14 after hitting a rate limit on qwen-plus-2025-07-28. Sample code

    HELPCODEESCAPE-python
    import os
    import asyncio
    from openai import AsyncOpenAI, APIStatusError
    
    # Configuration
    API_KEY = os.getenv("DASHSCOPE_API_KEY")
    # Primary model
    MODEL = "qwen-plus-2025-07-28"
    # Backup model
    BACKUP_MODEL = "qwen-plus-2025-07-14"
    # Test question
    QUESTION = "Who are you?"
    # Concurrency setting
    NUM_REQUESTS = 10
    
    client = AsyncOpenAI(
        api_key=API_KEY,
        base_url="https://dashscope-intl.aliyuncs.com/compatible-mode/v1"
    )
    
    async def send_request(model):
        """Send a single request"""
        try:
            await client.chat.completions.create(
                model=model,
                messages=[{"role": "user", "content": QUESTION}]
            )
            return True
        except APIStatusError as e:
            if e.status_code == 429:
                print(f"[Rate Limit Triggered] Model {model}")
                return False
            raise
        except Exception as e:
            print(f"[Request Failed] Model {model}, Error: {e}")
            return False
    
    async def task(i):
        # Try the primary model
        if await send_request(MODEL):
            return True
        # If rate-limited, try the backup model
        return await send_request(BACKUP_MODEL)
    
    async def main():
        results = await asyncio.gather(*(task(i) for i in range(NUM_REQUESTS)))
        print(f"Successful requests: {sum(results)}, Failed requests: {len(results) - sum(results)}")
    
    if __name__ == "__main__":
        asyncio.run(main())
  4. Split tasks: Long conversations and large documents consume tokens quickly. Break large tasks into smaller batches and submit them at different times.

  5. Use batch inference : If real-time responses are not required, use batch inference (Batch API). Batch requests are not subject to real-time rate limiting, though queuing and processing time applies.

  6. Increase rate limits : If the default limits do not meet your needs, raise the temporary TPM limit for a model in Rate Limit Increase on the Model Studio console. The change takes effect immediately. See Increase temporary rate limits for details.

Increase temporary rate limits

If the default rate limits do not meet your needs, raise the temporary TPM limit for a model on the Model Studio console. The change takes effect immediately and is valid for 30 days. After expiration, the limit reverts to the system default.

Supported regions: China (Beijing) and Singapore.

  1. Log on to the Model Studio console and go to the Rate Limit Increase page.

  2. In the upper-right corner of the page, click Increase Temporary Rate Limit.

  3. In the dialog box, select the Model and enter the new Token Account Limit (Tokens/60s) value. The dialog box shows the current limit and the maximum configurable value.

  4. Click OK. The increase takes effect immediately.

After the increase takes effect, verify it in either of these ways:

  • On the Rate Limit Increase page, the list shows models with increased limits and their updated rate limit values.

  • In Model List, navigate to the model's details page to view the updated rate limit data.

Note

  • The dialog box on the Rate Limit Increase page lists all models eligible for a temporary rate limit increase.

  • Submitting a new request for a model that already has a temporary limit increase resets the 30-day validity period.

  • Set a limit that reflects your actual needs. If the configured limit significantly exceeds actual usage for a prolonged period, the system may revert it to the default after notifying you.

Rerank models

Rerank models

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** The following limits are per minute. The service may also apply per-second limits of RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-rerank5,4005,000,000,000
qwen3-vl-rerank6009,000,000
gte-rerank-v25,0404,980,000,000

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** The following limits are per minute. The service may also apply per-second limits of RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-rerank5,4005,000,000,000
gte-rerank-v25,0404,980,000,000

Domain specific

Retired models

For details, see model deprecation.

Retired on March 30, 2026

CategoryModel nameRate limit
RPMTPM ** Input + output tokens**
Qwen language modelsqwen2-72b-instruct00
qwen2-57b-a14b-instruct
qwen2-7b-instruct
qwen2-1.5b-instruct
qwen2-0.5b-instruct
qwen1.5-110b-chat
qwen1.5-72b-chat
qwen1.5-32b-chat
qwen1.5-14b-chat
qwen1.5-7b-chat
qwen1.5-1.8b-chat
qwen1.5-0.5b-chat
qwen2.5-coder-3b-instruct
qwen2.5-coder-1.5b-instruct
qwen2.5-coder-0.5b-instruct
qwen2.5-math-1.5b-instruct
Qwen-VLqwen2-vl-72b-instruct
qwen2-vl-7b-instruct
qwen2-vl-2b-instruct
qwen-vl-v1
qwen-vl-chat-v1
MiniMaxabab6.5g-chat
abab6.5t-chat
abab6.5s-chat
StableDiffusion - text-to-imagestable-diffusion-xl
stable-diffusion-v1.5
stable-diffusion-3.5-large
stable-diffusion-3.5-large-turbo
FLUX - text-to-imageflux-schnell
flux-dev
flux-merged
Qwen-Audioqwen2-audio-instruct
qwen-audio-chat
OpenNLUopennlu-v1

Retired on January 30, 2026

CategoryModel nameRate limit
RPMTPM ** Input + output tokens**
Qwen-Maxqwen-max-2024-04-0300
Qwen-Plusqwen-plus-2024-11-27
qwen-plus-2024-11-25
qwen-plus-2024-09-19
qwen-plus-2024-08-06
qwen-plus-2024-07-23
Qwen-Turboqwen-turbo-2024-09-19
qwen-turbo-2024-06-24
Qwen-VLqwen-vl-max-2024-10-30
qwen-vl-max-2024-08-09
qwen-vl-plus-2024-08-09
Qwen-Audioqwen-audio-turbo-2024-12-04
qwen-audio-turbo-2024-08-07
qwen-audio-asr-2024-12-04

Retired on July 30, 2025

CategoryModel nameRate limit
RPMTPM ** Input + output tokens**
Qwen-VLqwen-vl-plus-2023-12-0100
Yiyi-large
yi-medium
yi-large-rag
yi-large-turbo
Dollydolly-12b-v2

Retired on July 2, 2025

CategoryModel nameRate limit
RPMTPM ** Input + output tokens**
Llama - text inputllama3.3-70b-instruct00
llama3.2-3b-instruct
llama3.2-1b-instruct
llama3.1-405b-instruct
llama3.1-70b-instruct
llama3.1-8b-instruct
llama3-70b-instruct
llama3-8b-instruct
llama2-13b-chat-v2
llama2-7b-chat-v2
Llama - text and image inputllama3.2-90b-vision-instruct
llama3.2-11b-vision
Baichuan - Open sourcebaichuan2-13b-chat-v1
baichuan2-7b-chat-v1
baichuan-7b-v1
ChatGLMchatglm3-6b
chatglm-6b-v2
Ziyaziya-llama-13b-v1
BELLEbelle-llama-13b-2m-v1
Chatyuanchatyuan-large-v2
BiLLabilla-7b-sft-v1
CategoryModel nameRate limit
Task submission RPSConcurrent tasks
Cosplay Character Generationwanx-style-cosplay-v100
ASTwanx-ast
WordArtwordart-surnames
AnyTextwanx-anytext-v1

Retired on May 8, 2025

CategoryModel nameRate limitAlternative model
RPMTPM ** Input + output tokens**
Qwen language modelsqwen-max-2024-01-07(qwen-max-0107)00qwen-max
qwen-plus-2024-06-24(qwen-plus-0624)qwen-plus
qwen-plus-2024-02-06(qwen-plus-0206)
qwen-turbo-2024-02-06(qwen-turbo-0206)qwen-turbo
qwen-vl-max-2024-02-01(qwen-vl-max-0201)qwen-vl-max
Qwen language models - Open sourceqwen-72b-chatqwen2.5-72b-instruct
qwen-14b-chatqwen2.5-14b-instruct
qwen-7b-chatqwen2.5-7b-instruct
qwen-1.8b-chatqwen2.5-1.5b-instruct
qwen-1.8b-longcontext-chatqwen2.5-1.5b-instruct
qwen2-math-72b-instructqwen2.5-math-72b-instruct
qwen2-math-7b-instructqwen2.5-math-7b-instruct
qwen2-math-1.5b-instructqwen2.5-math-7b-instruct
CategoryModel nameRate limitAlternative model
Task submission RPSConcurrent tasks
Motionshopmotionshop-video-detect00For similar results, use the "Generate by video background" feature in animate-anyone-gen2.
motionshop-gen3d
motionshop-synthesis

Text generation - Qwen

Qwen language models

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model nameRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Total of input and output tokens.**
qwen3-max6001,000,000
qwen3-max-2025-09-2360100,000
qwen3-max-preview6001,000,000
qwen3.6-plus30,0005,000,000
qwen3.6-plus-2026-04-026001,000,000
qwen3.6-flash15,0005,000,000
qwen3.6-flash-2026-04-16601,000,000
qwen3.5-plus30,0005,000,000
qwen3.5-plus-2026-02-156001,000,000
qwen-plus15,0005,000,000
qwen-plus-2025-12-01601,000,000
qwen-plus-2025-09-11
qwen-plus-2025-07-28
qwen3.5-flash30,00010,000,000
qwen3.5-flash-2026-02-236001,000,000
qwen-flash15,00010,000,000
qwen-flash-2025-07-28601,000,000

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** The limits below are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Counts both input and output tokens**
qwen3.6-max-preview6001,000,000
qwen3-max6001,000,000
qwen3-max-2026-01-23
qwen3-max-2025-09-2360100,000
qwen3-max-preview6001,000,000
qwen-max6001,000,000
qwen-max-latest6001,000,000
qwen-max-2025-01-25(qwen-max-0125)60100,000
qwen3.6-plus15,0005,000,000
qwen3.6-plus-2026-04-02601,000,000
qwen3.6-flash15,0005,000,000
qwen3.6-flash-2026-04-16601,000,000
qwen3.5-plus30,0005,000,000
qwen3.5-plus-2026-04-206001,000,000
qwen3.5-plus-2026-02-156001,000,000
qwen-plus6001,000,000
qwen-plus-latest6001,000,000
qwen-plus-2025-12-011201,000,000
qwen-plus-2025-09-11120
qwen-plus-2025-07-2860100,000
qwen-plus-2025-07-14(qwen-plus-0714)
qwen-plus-2025-04-28(qwen-plus-0428)1,000,000
qwen-plus-2025-01-25(qwen-plus-0125)100,000
qwen3.5-flash15,0005,000,000
qwen3.5-flash-2026-02-23601,000,000
qwen-flash6005,000,000
qwen-flash-2025-07-286005,000,000
qwen-plus60100,000
qwen-turbo6005,000,000
qwen-turbo-latest6005,000,000
qwen-turbo-2025-04-28(qwen-turbo-0428)601,000,000
qwen-turbo-2024-11-01(qwen-turbo-1101)5,000,000

US

If you select the US deployment scope, model inference compute resources are restricted to the United States. Static data is stored in your selected region. Supported region: US (Virginia).

ModelRate limit ** These are per-minute limits. The service also enforces equivalent per-second limits: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-plus-us6001,000,000
qwen-plus-2025-12-01-us60
qwen-flash-us6005,000,000
qwen-flash-2025-07-28-us

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** The following are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes both input and output tokens**
qwen3.6-max-preview6001,000,000
qwen3-max30,0005,000,000
qwen3-max-2026-01-236001,000,000
qwen3-max-2025-09-2360100,000
qwen3-max-preview6001,000,000
qwen-max1,2001,000,000
qwen-max-latest
qwen-max-2025-01-25(qwen-max-0125)60100,000
qwen-max-2024-09-19(qwen-max-0919)
qwen3.6-plus30,0005,000,000
qwen3.6-plus-2026-04-026001,000,000
qwen3.6-flash30,00010,000,000
qwen3.6-flash-2026-04-166001,000,000
qwen3.5-plus30,0005,000,000
qwen3.5-plus-2026-04-206001,000,000
qwen3.5-plus-2026-02-156001,000,000
qwen-plus30,0005,000,000
qwen-plus-latest15,0001,200,000
qwen-plus-2025-12-011201,000,000
qwen-plus-2025-09-1160
qwen-plus-2025-07-28(qwen-plus-0728)
qwen-plus-2025-07-14(qwen-plus-0714)100,000
qwen-plus-2025-04-28(qwen-plus-0428)1,000,000
qwen-plus-2025-01-25(qwen-plus-0125)150,000
qwen-plus-2025-01-12(qwen-plus-0112)
qwen-plus-2024-12-20(qwen-plus-1220)
qwen3.5-flash30,00010,000,000
qwen3.5-flash-2026-02-236001,000,000
qwen-flash30,00010,000,000
qwen-flash-2025-07-28601,000,000
qwq-plus6001,000,000
qwq-plus-latest
qwq-plus-2025-03-0560100,000
qwen-turbo1,2005,000,000
qwen-turbo-latest
qwen-turbo-2025-04-28(qwen-turbo-0428)601,000,000
qwen-turbo-2025-02-11(qwen-turbo-0211)5,000,000
qwen-turbo-2024-11-01(qwen-turbo-1101)
qwen-long-latest1,20060,000
qwen-long-2025-01-25(qwen-long-0125)37,500

China (Hong Kong)

If you select the Hong Kong (China) deployment scope, model inference compute resources are restricted to Hong Kong (China). Static data is stored in your selected region. Supported region: China (Hong Kong).

Model nameRate limit (triggered if any value is exceeded) ** The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-max6001,000,000
qwen3-max-2026-01-23
qwen-plus6001,000,000
qwen-plus-2025-12-011201,000,000
qwen3.5-flash15,0005,000,000
qwen3.5-flash-2026-02-23601,000,000

EU

If you select the European Union deployment scope, model inference compute resources are restricted to the European Union. Static data is stored in your selected region. TSupported region: Germany (Frankfurt).

Model nameRate limits ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-max6001,000,000
qwen3-max-2026-01-23
qwen-plus6001,000,000
qwen-plus-2025-12-011201,000,000
qwen3.5-flash30,00010,000,000
qwen3.5-flash-2026-02-236001,000,000

Qwen-VL (visual understanding)

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-plus1,2001,000,000
qwen3-vl-plus-2025-09-2360100,000
qwen3-vl-flash1,2001,000,000
qwen3-vl-flash-2025-10-1560100,000

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-plus1,2001,000,000
qwen3-vl-plus-2025-12-1960100,000
qwen3-vl-plus-2025-09-231201,000,000
qwen3-vl-flash1,2001,000,000
qwen3-vl-flash-2026-01-2260100,000
qwen3-vl-flash-2025-10-151201,000,000
qwen-vl-max1,2001,000,000
qwen-vl-max-latest
qwen-vl-max-2025-08-13(qwen-vl-max-0813)60100,000
qwen-vl-max-2025-04-08(qwen-vl-max-0408)1,2001,000,000
qwen-vl-plus
qwen-vl-plus-latest
qwen-vl-plus-2025-08-15(qwen-vl-plus-0815)1201,000,000
qwen-vl-plus-2025-05-07(qwen-vl-plus-0507)
qwen-vl-plus-2025-01-25(qwen-vl-plus-0125)1,200
qvq-max60100,000
qvq-max-latest
qvq-max-2025-03-25(qvq-max-0325)

US

If you select the US deployment scope, model inference compute resources are restricted to the United States. Static data is stored in your selected region. Supported region: US (Virginia).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-flash-us1,2001,000,000
qwen3-vl-flash-2026-01-22-us1201,000,000
qwen3-vl-flash-2025-10-15-us

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-plus3,0005,000,000
qwen3-vl-plus-2025-12-1960100,000
qwen3-vl-plus-2025-09-23
qwen3-vl-flash3,0005,000,000
qwen3-vl-flash-2026-01-2260100,000
qwen3-vl-flash-2025-10-15
qwen-vl-max1,2001,000,000
qwen-vl-max-latest
qwen-vl-max-2025-08-13(qwen-vl-max-0813)60100,000
qwen-vl-max-2025-04-08(qwen-vl-max-0408)
qwen-vl-max-2025-04-02(qwen-vl-max-0402)
qwen-vl-max-2025-01-25(qwen-vl-max-0125)
qwen-vl-max-2024-12-30(qwen-vl-max-1230)
qwen-vl-max-2024-11-19(qwen-vl-max-1119)
qwen-vl-plus1,2001,000,000
qwen-vl-plus-latest
qwen-vl-plus-2025-08-15(qwen-vl-plus-0815)60100,000
qwen-vl-plus-2025-07-10(qwen-vl-plus-0710)
qwen-vl-plus-2025-05-07(qwen-vl-plus-0507)
qwen-vl-plus-2025-01-25(qwen-vl-plus-0125)
qwen-vl-plus-2025-01-02(qwen-vl-plus-0102)
qvq-max
qvq-max-latest
qvq-max-2025-05-15(qvq-max-0515)
qvq-max-2025-03-25(qvq-max-0325)
qvq-plus
qvq-plus-latest
qvq-plus-2025-05-15(qvq-plus-0515)

China (Hong Kong)

If you select the Hong Kong (China) deployment scope, model inference compute resources are restricted to Hong Kong (China). Static data is stored in your selected region. Supported region: China (Hong Kong).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-plus1,2001,000,000
qwen3-vl-plus-2025-12-1960100,000

EU

If you select the European Union deployment scope, model inference compute resources are restricted to the European Union. Static data is stored in your selected region. TSupported region: Germany (Frankfurt).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-vl-plus1,2001,000,000
qwen3-vl-flash1,2001,000,000
qwen3-vl-flash-2026-01-2260100,000
qwen3-vl-flash-2025-10-1560100,000

Qwen-Omni (omni-modal)

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** Per-minute limit**
RPMTPM ** Input and output tokens**
qwen3.5-omni-flash60100,000
qwen3.5-omni-flash-2026-03-15
qwen3.5-omni-plus
qwen3.5-omni-plus-2026-03-15
qwen3-omni-flash
qwen3-omni-flash-2025-12-01
qwen3-omni-flash-2025-09-15
qwen-omni-turbo
qwen-omni-turbo-latest
qwen-omni-turbo-2025-03-26

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** Per-minute limit**
RPMTPM ** Input and output tokens**
qwen3.5-omni-flash60100,000
qwen3.5-omni-flash-2026-03-15
qwen3.5-omni-plus
qwen3.5-omni-plus-2026-03-15
qwen3-omni-flash
qwen3-omni-flash-2025-12-01
qwen3-omni-flash-2025-09-15
qwen-omni-turbo
qwen-omni-turbo-latest
qwen-omni-turbo-2025-03-26(qwen-omni-turbo-0326)
qwen-omni-turbo-2025-01-19(qwen-omni-turbo-0119)

Qwen-Omni-Realtime (real-time multimodal)

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ParameterRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3.5-omni-plus-realtime60100,000
qwen3.5-omni-plus-realtime-2026-03-15
qwen3.5-omni-flash-realtime
qwen3.5-omni-flash-realtime-2026-03-15
qwen3-omni-flash-realtime
qwen3-omni-flash-realtime-2025-12-01
qwen3-omni-flash-realtime-2025-09-15
qwen-omni-turbo-realtime10,000
qwen-omni-turbo-realtime-latest
qwen-omni-turbo-realtime**-**2025-05-08

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ParameterRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3.5-omni-plus-realtime60100,000
qwen3.5-omni-plus-realtime-2026-03-15
qwen3.5-omni-flash-realtime
qwen3.5-omni-flash-realtime-2026-03-15
qwen3-omni-flash-realtime
qwen3-omni-flash-realtime-2025-12-01
qwen3-omni-flash-realtime-2025-09-15
qwen-omni-turbo-realtime
qwen-omni-turbo-realtime-latest
qwen-omni-turbo-realtime-2025-05-08

Qwen-OCR

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-vl-ocr6006,000,000
qwen-vl-ocr-2025-11-201,200

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-vl-ocr6006,000,000
qwen-vl-ocr-2025-11-201,200

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-vl-ocr6006,000,000
qwen-vl-ocr-latest1,200
qwen-vl-ocr-2025-11-20
qwen-vl-ocr-2025-04-13600
qwen-vl-ocr-2024-10-28

Qwen-Math

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelRate limit ** The limits below are per minute. The service may also enforce per-second limits for RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-math-plus1,2001,000,000
qwen-math-plus-latest
qwen-math-plus-2024-09-19(qwen-math-plus-0919)60100,000
qwen-math-plus-2024-08-16(qwen-math-plus-0816)1020,000
qwen-math-turbo1,2001,000,000
qwen-math-turbo-latest
qwen-math-turbo-2024-09-19(qwen-math-turbo-0919)60100,000

Qwen-Coder

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-coder-plus2,4002,000,000
qwen3-coder-plus-2025-09-23601,000,000
qwen3-coder-plus-2025-07-22
qwen3-coder-flash1,200
qwen3-coder-flash-2025-07-2860

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-coder-plus2,4002,000,000
qwen3-coder-plus-2025-09-23601,000,000
qwen3-coder-plus-2025-07-22601,000,000
qwen3-coder-flash6005,000,000
qwen3-coder-flash-2025-07-28605,000,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-coder-plus5,0005,000,000
qwen3-coder-plus-2025-09-23601,000,000
qwen3-coder-plus-2025-07-22
qwen3-coder-flash5,0005,000,000
qwen3-coder-flash-2025-07-28601,000,000
qwen-coder-plus1,200
qwen-coder-plus-latest
qwen-coder-plus-2024-11-06(qwen-coder-plus-1106)120200,000
qwen-coder-turbo1,2001,000,000
qwen-coder-turbo-latest
qwen-coder-turbo-2024-09-19(qwen-coder-turbo-0919)60100,000

Qwen-MT

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model nameRate limit ** These are per-minute limits. The service may also enforce them on a per-second basis as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-mt-plus6025,000
qwen-mt-flash35,000
qwen-mt-lite100,000

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** These are per-minute limits. The service may also enforce them on a per-second basis as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-mt-plus6025,000
qwen-mt-flash
qwen-mt-lite
qwen-mt-turbo

US

If you select the US deployment scope, model inference compute resources are restricted to the United States. Static data is stored in your selected region. Supported region: US (Virginia).

Model nameRate limit ** These are per-minute limits. The service may also enforce them on a per-second basis as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-mt-lite-us60100,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** These are per-minute limits. The service may also enforce them on a per-second basis as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-mt-plus6025,000
qwen-mt-flash35,000
qwen-mt-lite100,000
qwen-mt-turbo35,000

Qwen-Doc

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRate limit ** These are per-minute limits. The service may also enforce per-second limits calculated as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen-doc-turbo6003,000,000

Qwen-Deep-Research

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRate limit ** These are per-minute limits. Per-second limits (RPS = RPM/60 and TPS = TPM/60) may also be enforced.**
RPMTPM ** Counts both input and output tokens**
Qwen-Deep-Research1201,200,000

Text generation - Qwen - Open source

Open-source Qwen language models

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes both input and output tokens**
qwen3.5-397b-a17b6001,000,000
qwen3.5-122b-a10b
qwen3.5-27b
qwen3.6-35b-a3b
qwen3.5-35b-a3b
qwen3-next-80b-a3b-thinking
qwen3-next-80b-a3b-instruct
qwen3-235b-a22b-thinking-2507
qwen3-235b-a22b-instruct-2507
qwen3-30b-a3b-thinking-2507
qwen3-30b-a3b-instruct-2507
qwen3-235b-a22b
qwen3-30b-a3b
qwen3-32b
qwen3-14b
qwen3-8b

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes both input and output tokens**
qwen3.5-397b-a17b6001,000,000
qwen3.5-122b-a10b1,000,000
qwen3.5-27b1,000,000
qwen3.6-35b-a3b1,000,000
qwen3.6-27b1,000,000
qwen3.5-35b-a3b5,000,000
qwen3-next-80b-a3b-thinking1,000,000
qwen3-next-80b-a3b-instruct
qwen3-235b-a22b-thinking-2507
qwen3-235b-a22b-instruct-2507
qwen3-30b-a3b-thinking-25075,000,000
qwen3-30b-a3b-instruct-2507
qwen3-235b-a22b1,000,000
qwen3-32b
qwen3-30b-a3b
qwen3-14b
qwen3-8b
qwen3-4b
qwen3-1.7b
qwen3-0.6b
qwen2.5-14b-instruct-1m1,2005,000,000
qwen2.5-7b-instruct-1m
qwen2.5-72b-instruct60150,000
qwen2.5-32b-instruct
qwen2.5-14b-instruct
qwen2.5-7b-instruct

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes both input and output tokens**
qwen3.5-397b-a17b6001,000,000
qwen3.5-122b-a10b
qwen3.5-27b
qwen3.6-35b-a3b
qwen3.6-27b
qwen3.5-35b-a3b
qwen3-next-80b-a3b-thinking
qwen3-next-80b-a3b-instruct
qwen3-235b-a22b-thinking-2507
qwen3-235b-a22b-instruct-2507
qwen3-30b-a3b-thinking-2507
qwen3-30b-a3b-instruct-2507
qwen3-235b-a22b
qwen3-30b-a3b
qwen3-32b2400
qwen3-14b600
qwen3-8b
qwen3-4b
qwen3-1.7b
qwen3-0.6b
qwq-32b
qwq-32b-preview1,200
qwen2.5-72b-instruct
qwen2.5-32b-instruct
qwen2.5-14b-instruct
qwen2.5-14b-instruct-1m5,000,000
qwen2.5-7b-instruct1,000,000
qwen2.5-7b-instruct-1m5,000,000
qwen2.5-3b-instruct2,000,000
qwen2.5-1.5b-instruct
qwen2.5-0.5b-instruct

Qwen-VL (visual understanding/image-to-text)

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Counts both input and output tokens**
qwen3-vl-32b-thinking60100,000
qwen3-vl-32b-instruct
qwen3-vl-30b-a3b-thinking
qwen3-vl-30b-a3b-instruct
qwen3-vl-8b-thinking
qwen3-vl-8b-instruct
qwen3-vl-235b-a22b-thinking
qwen3-vl-235b-a22b-instruct
qwen2.5-vl-72b-instruct
qwen2.5-vl-32b-instruct
qwen2.5-vl-7b-instruct1,2001,000,000
qwen2.5-vl-3b-instruct

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Counts both input and output tokens**
qwen3-vl-235b-a22b-thinking60100,000
qwen3-vl-235b-a22b-instruct
qwen3-vl-32b-thinking6001,000,000
qwen3-vl-32b-instruct
qwen3-vl-30b-a3b-thinking
qwen3-vl-30b-a3b-instruct
qwen3-vl-8b-thinking
qwen3-vl-8b-instruct

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Counts both input and output tokens**
qwen3-vl-32b-thinking6001,000,000
qwen3-vl-32b-instruct
qwen3-vl-30b-a3b-thinking
qwen3-vl-30b-a3b-instruct
qwen3-vl-8b-thinking
qwen3-vl-8b-instruct
qwen3-vl-235b-a22b-thinking60100,000
qwen3-vl-235b-a22b-instruct
qwen2.5-vl-72b-instruct
qwen2.5-vl-32b-instruct
qwen2.5-vl-7b-instruct1,2001,000,000
qwen2.5-vl-3b-instruct
qwen2-vl-72b-instruct
qwen2-vl-7b-instruct
qwen2-vl-2b-instruct
qvq-72b-preview60100,000

Qwen2.5-Omni

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** The following rate-limiting conditions are per minute, and the service may be limited by RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes Input and Output Tokens**
qwen2.5-omni-7b60100,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** The following are the per-minute rate limits. The service may also throttle based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Including input and output tokens**
qwen2.5-omni-7b60100,000

Qwen3-Omni-Captioner

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** Limits are specified per minute. The service may also enforce per-second limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-omni-30b-a3b-captioner60100,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** Limits are specified per minute. The service may also enforce per-second limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen3-omni-30b-a3b-captioner60100,000

Qwen-Math

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelRate limit ** Limits are also enforced per second: RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
qwen2.5-math-72b-instruct1,2001,000,000
qwen2.5-math-7b-instruct
qwen2.5-math-1.5b-instruct

Qwen-Coder

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model nameRate limit ** The following are the per-minute rate limits: the service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Including input and output tokens**
qwen3-coder-480b-a35b-instruct6001,000,000
qwen3-coder-30b-a3b-instruct

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** The following are the per-minute rate-limiting conditions. The service may be limited by RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Including input and output tokens**
qwen3-coder-next6001,000,000
qwen3-coder-480b-a35b-instruct
qwen3-coder-30b-a3b-instruct

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** The following rate limits are specified per minute, and the service may be throttled based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Including Input and Output Tokens**
qwen3-coder-next6001,000,000
qwen3-coder-480b-a35b-instruct
qwen3-coder-30b-a3b-instruct
qwen2.5-coder-32b-instruct1,200
qwen2.5-coder-14b-instruct
qwen2.5-coder-7b-instruct
qwen2.5-coder-3b-instruct2,000,000
qwen2.5-coder-1.5b-instruct
qwen2.5-coder-0.5b-instruct

EU (EU)

If you select the European Union deployment scope, model inference compute resources are restricted to the European Union. Static data is stored in your selected region. TSupported region: Germany (Frankfurt).

Model nameRate limit ** The following are the per-minute rate limits, and the service may be throttled by RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Including Input and Output Tokens**
qwen3-coder-480b-a35b-instruct6001,000,000
qwen3-coder-30b-a3b-instruct

Text generation - third-party models

DeepSeek

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

ModelRate limits (triggered when either is exceeded) ** The following are per-minute rate limits. The service may also enforce per-second limits as RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
deepseek-v4-pro15,0001,200,000
deepseek-v4-flash

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
deepseek-v4-pro10,0001,200,000
deepseek-v4-flash
deepseek-v3.210,0001,200,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
deepseek-v4-pro15,0001,200,000
deepseek-v4-flash
deepseek-v3.215,0001,200,000
deepseek-v3.2-exp15,0001,200,000
deepseek-v3.115,0001,200,000
deepseek-r1-052860100,000
deepseek-r115,0001,200,000
deepseek-v3
deepseek-r1-distill-qwen-7b
deepseek-r1-distill-qwen-14b
deepseek-r1-distill-qwen-32b
deepseek-r1-distill-qwen-1.5b60100,000
deepseek-r1-distill-llama-8b
deepseek-r1-distill-llama-70b

Kimi

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
kimi-k2.55001,000,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
kimi-k2.65001,000,000
kimi-k2.55001,000,000
kimi-k2-thinking5001,000,000
Moonshot-Kimi-K2-Instruct5001,000,000

MiniMax

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
MiniMax-M2.55001,000,000

GLM

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
glm-5.15001,000,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens**
glm-5.15001,000,000
glm-55001,000,000
glm-4.7500
glm-4.660

Image generation

Qwen (Qwen-Image)

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model serviceModelRate limit
Task submission limitConcurrent tasks
Text-to-image and image editingqwen-image-2.0-pro2/minuteNo limit for sync API
qwen-image-2.0-pro-2026-04-222/minuteNo limit for sync API
qwen-image-2.0-pro-2026-03-032/minuteNo limit for sync API
qwen-image-2.02/secondNo limit for sync API
qwen-image-2.0-2026-03-032/secondNo limit for sync API
Text-to-imageqwen-image-max2/minuteNo limit for sync API
qwen-image-max-2025-12-302/minuteNo limit for sync API
qwen-image-plus2/secondNo limit for sync API / 2 for async API
qwen-image-plus-2026-01-092/secondNo limit for sync API
qwen-image2/secondNo limit for sync API / 2 for async API
Image editingqwen-image-edit-max2/minuteNo limit for sync API
qwen-image-edit-max-2026-01-162/minuteNo limit for sync API
qwen-image-edit-plus2/secondNo limit for sync API
qwen-image-edit-plus-2025-12-152/secondNo limit for sync API
qwen-image-edit-plus-2025-10-302/secondNo limit for sync API
qwen-image-edit2/secondNo limit for sync API

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model serviceModelRate limit
Task submission limitConcurrent tasks
Text-to-image and image editingqwen-image-2.0-pro2/minuteNo limit for sync API
qwen-image-2.0-pro-2026-04-222/minuteNo limit for sync API
qwen-image-2.0-pro-2026-03-032/minuteNo limit for sync API
qwen-image-2.02/secondNo limit for sync API
qwen-image-2.0-2026-03-032/secondNo limit for sync API
Text-to-imageqwen-image-max2/minuteNo limit for sync API
qwen-image-max-2025-12-302/minuteNo limit for sync API
qwen-image-plus2/secondNo limit for sync API / 2 for async API
qwen-image-plus-2026-01-092/secondNo limit for sync API
qwen-image2/secondNo limit for sync API / 2 for async API
Image editingqwen-image-edit-max2/minuteNo limit for sync API
qwen-image-edit-max-2026-01-162/minuteNo limit for sync API
qwen-image-edit-plus2/secondNo limit for sync API
qwen-image-edit-plus-2025-12-152/secondNo limit for sync API
qwen-image-edit-plus-2025-10-302/secondNo limit for sync API
qwen-image-edit2/secondNo limit for sync API
Image translationqwen-mt-image1/second2

Z-Image (Text-to-image)

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit
Submission RPS limitConcurrent tasks
z-image-turbo2No limit for sync API

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit
Submission RPS limitConcurrent tasks
z-image-turbo2No limit for sync API

Wan

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model serviceModelRate limit
Submission RPS limitConcurrent tasks
Text-to-imagewan2.6-t2i55
Image generationwan2.6-image55

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model serviceModelRate limit
Submission RPS limitConcurrent tasks
Image generation and editingwan2.7-image-pro55
wan2.7-image
wan2.6-image
Text-to-imagewan2.6-t2i55
wan2.5-t2i-preview
wan2.2-t2i-flash22
wan2.2-t2i-plus
wan2.1-t2i-turbo
wan2.1-t2i-plus
Image editingwan2.5-i2i-preview55

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model serviceModelRate limit
Submission RPS limitConcurrent tasks
Image generation and editingwan2.7-image-pro55
wan2.7-image
wan2.6-image
Text-to-imagewan2.6-t2i15
wan2.5-t2i-preview5
wanx2.0-t2i-turbo22
wanx2.1-t2i-turbo
wanx2.1-t2i-plus
wan2.2-t2i-flash
wan2.2-t2i-plus
General image editingwan2.5-i2i-preview55
wanx2.1-imageedit22

OutfitAnyone (AI try-on)

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelRate limit
Job submission limitConcurrent tasks
aitryon-plus105
aitryon-parsing-v110No limit for sync API

Video generation

HappyHorse

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported region: Germany (Frankfurt).

Model nameRate limits
Task RPS limitConcurrent tasks
happyhorse-1.0-t2v55
happyhorse-1.0-i2v55
happyhorse-1.0-r2v55
happyhorse-1.0-video-edit55

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model nameRate limits
Task RPS limitConcurrent tasks
happyhorse-1.0-t2v55
happyhorse-1.0-i2v55
happyhorse-1.0-r2v55
happyhorse-1.0-video-edit55

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model nameRate limits
Task RPS limitConcurrent tasks
happyhorse-1.0-t2v55
happyhorse-1.0-i2v55
happyhorse-1.0-r2v55
happyhorse-1.0-video-edit55

Wan

Global

If you select the Global deployment scope, model inference compute resources are dynamically scheduled worldwide. Static data is stored in your selected region. Supported regions: US (Virginia) and Germany (Frankfurt).

Model serviceModel nameRate limits
RPS limitConcurrent tasks
text-to-videowan2.6-t2v55
image-to-video - first framewan2.6-i2v
reference-to-videowan2.6-r2v

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Model serviceModel nameRate limits
RPS limitConcurrent tasks
text-to-videowan2.7-t2v55
wan2.7-t2v-2026-04-2555
wan2.6-t2v55
wan2.5-t2v-preview55
wan2.2-t2v-plus22
wan2.1-t2v-turbo
wan2.1-t2v-plus
image-to-videowan2.7-i2v55
wan2.7-i2v-2026-04-2555
image-to-video - first framewan2.6-i2v-flash55
wan2.6-i2v
wan2.5-i2v-preview
wan2.2-i2v-flash22
wan2.1-i2v-plus
wan2.1-i2v-turbo
wan2.2-i2v-plus
image-to-video - first and last frameswan2.2-kf2v-flash
wan2.1-kf2v-plus1
general video editingwan2.1-vace-plus2
wan2.7-videoedit55
reference-to-videowan2.7-r2v55
wan2.6-r2v-flash55
wan2.6-r2v55
image-to-motionwan2.2-animate-move51
video face swapwan2.2-animate-mix51

US

If you select the US deployment scope, model inference compute resources are restricted to the United States. Static data is stored in your selected region. Supported region: US (Virginia).

Model serviceModel nameRate limits
RPS limitConcurrent tasks
text-to-videowan2.6-t2v-us55
image-to-video - first framewan2.6-i2v-us

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Model serviceModel nameRate limits
RPS limitConcurrent tasks
text-to-videowan2.7-t2v55
wan2.7-t2v-2026-04-2555
wan2.6-t2v55
wan2.5-t2v-preview55
wan2.2-t2v-plus22
wan2.1-t2v-turbo
wan2.1-t2v-plus
image-to-videowan2.7-i2v55
wan2.7-i2v-2026-04-2555
image-to-video - first framewan2.6-i2v-flash55
wan2.6-i2v
wan2.5-i2v-preview
wan2.2-i2v-plus22
wan2.1-i2v-turbo
wan2.1-i2v-plus
image-to-video - first and last frameswan2.2-kf2v-flash
wan2.1-kf2v-plus
general video editingwan2.1-vace-plus
wan2.7-videoedit55
reference-to-videowan2.7-r2v55
wan2.6-r2v-flash55
wan2.6-r2v55
digital human s2vwan2.2-s2v-detect5No concurrency limit for synchronous calls
wan2.2-s2v1
image-to-motionwan2.2-animate-move51
video face swapwan2.2-animate-mix51

AnimateAnyone

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
animate-anyone-detect-gen25No concurrency limit for synchronous calls
animate-anyone-template-gen21One task runs at a time; others are queued.
animate-anyone-gen2

EMO

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
emo-detect-v15No concurrency limit for synchronous calls
emo-v11One task runs at a time; others are queued.

LivePortrait

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
liveportrait-detect5No concurrency limit for synchronous calls
liveportrait1One task runs at a time; others are queued.

VideoRetalk

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
videoretalk11One task runs at a time; others are queued.

Emoji

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
emoji-detect-v11No concurrency limit for synchronous calls
emoji-v11One task runs at a time; others are queued.

Video style transform

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

Model nameRPS limitConcurrent tasks
video-style-transform202One task runs at a time; others are queued.

Music generation

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelRequests per minute (RPM)
fun-music-v1180

Speech synthesis (text-to-speech)

Qwen speech synthesis

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Qwen3-TTS-Instruct-Flash
ModelRPM
qwen3-tts-instruct-flash180
qwen3-tts-instruct-flash-2026-01-26180
Qwen3-TTS-VD
ModelRPM
qwen3-tts-vd-2026-01-26180
Qwen3-TTS-VC
ModelRPM
qwen3-tts-vc-2026-01-22180
Qwen3-TTS-Flash
ModelRPM
qwen3-tts-flash180
qwen3-tts-flash-2025-11-27180
qwen3-tts-flash-2025-09-1810

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Qwen3-TTS-Instruct-Flash
ModelRPM
qwen3-tts-instruct-flash180
qwen3-tts-instruct-flash-2026-01-26180
Qwen3-TTS-VD
ModelRPM
qwen3-tts-vd-2026-01-26180
Qwen3-TTS-VC
ModelRPM
qwen3-tts-vc-2026-01-22180
Qwen3-TTS-Flash
ModelRPM
qwen3-tts-flash180
qwen3-tts-flash-2025-11-27180
qwen3-tts-flash-2025-09-1810
Qwen-TTS
ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen-tts10100,000
qwen-tts-latest
qwen-tts-2025-05-22
qwen-tts-2025-04-10

Qwen real-time speech synthesis

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Qwen3-TTS-Instruct-Flash-Realtime
ModelRPM
qwen3-tts-instruct-flash-realtime180
qwen3-tts-instruct-flash-realtime-2026-01-22180
Qwen3-TTS-VD-Realtime
ModelRPM
qwen3-tts-vd-realtime-2026-01-15180
qwen3-tts-vd-realtime-2025-12-16
Qwen3-TTS-VC-Realtime
ModelRPM
qwen3-tts-vc-realtime-2026-01-15180
qwen3-tts-vc-realtime-2025-11-27
Qwen3-TTS-Flash-Realtime
ModelRPM
qwen3-tts-flash-realtime180
qwen3-tts-flash-realtime-2025-11-27180
qwen3-tts-flash-realtime-2025-09-1810

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Qwen3-TTS-Instruct-Flash-Realtime
ModelRPM
qwen3-tts-instruct-flash-realtime180
qwen3-tts-instruct-flash-realtime-2026-01-22180
Qwen3-TTS-VD-Realtime
ModelRPM
qwen3-tts-vd-realtime-2026-01-15180
qwen3-tts-vd-realtime-2025-12-16
Qwen3-TTS-VC-Realtime
ModelRPM
qwen3-tts-vc-realtime-2026-01-15180
qwen3-tts-vc-realtime-2025-11-27
Qwen3-TTS-Flash-Realtime
ModelRPM
qwen3-tts-flash-realtime180
qwen3-tts-flash-realtime-2025-11-27180
qwen3-tts-flash-realtime-2025-09-1810
Qwen-TTS-Realtime
ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen-tts-realtime10100,000
qwen-tts-realtime-latest
qwen-tts-realtime-2025-07-15

Qwen voice cloning

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRPM
qwen-voice-enrollment180

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRPM
qwen-voice-enrollment180

Qwen voice design

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRPM
qwen-voice-design180

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRPM
qwen-voice-design180

CosyVoice speech synthesis

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelTask submission RPS limit
cosyvoice-v3-plus3
cosyvoice-v3-flash

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelTask submission RPS limit
cosyvoice-v3.5-plus3
cosyvoice-v3.5-flash
cosyvoice-v3-plus
cosyvoice-v3-flash
cosyvoice-v2

CosyVoice voice cloning and voice design

CosyVoice voice cloning shares the same model and rate limit.

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelTask submission RPS limit
voice-enrollment10

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelTask submission RPS limit
voice-enrollment10

Speech recognition (speech-to-text) and speech translation

Qwen3-LiveTranslate-Flash

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen3-livetranslate-flash100100,000
qwen3-livetranslate-flash-2025-12-016,0001,000,000

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen3-livetranslate-flash100100,000
qwen3-livetranslate-flash-2025-12-01

Qwen-LiveTranslate-Flash-Realtime

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen3-livetranslate-flash-realtime10100,000
qwen3-livetranslate-flash-realtime-2025-09-22

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit (triggered if any value is exceeded) ** The following limits apply per minute. The service may also enforce rate limits using RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Includes input and output tokens.**
qwen3-livetranslate-flash-realtime10100,000
qwen3-livetranslate-flash-realtime-2025-09-22

Qwen audio file recognition

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

Qwen3-ASR-Flash-Filetrans
ModelRPM
qwen3-asr-flash-filetrans100
qwen3-asr-flash-filetrans-2025-11-17
Qwen3-ASR-Flash
ModelRPM
qwen3-asr-flash100
qwen3-asr-flash-2026-02-10
qwen3-asr-flash-2025-09-08

US

If you select the US deployment scope, model inference compute resources are restricted to the United States. Static data is stored in your selected region. Supported region: US (Virginia).

ModelRPM
qwen3-asr-flash-us100
qwen3-asr-flash-2025-09-08-us

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

Qwen3-ASR-Flash-Filetrans
ModelRPM
qwen3-asr-flash-filetrans100
qwen3-asr-flash-filetrans-2025-11-17
Qwen3-ASR-Flash
ModelRPM
qwen3-asr-flash100
qwen3-asr-flash-2026-02-10
qwen3-asr-flash-2025-09-08

Qwen real-time speech recognition

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRPS
qwen3-asr-flash-realtime20
qwen3-asr-flash-realtime-2026-02-10
qwen3-asr-flash-realtime-2025-10-27

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRPS
qwen3-asr-flash-realtime20
qwen3-asr-flash-realtime-2026-02-10
qwen3-asr-flash-realtime-2025-10-27

Paraformer speech recognition

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelTask submission RPS limit
paraformer-realtime-v220
paraformer-realtime-8k-v2
ModelRPM
paraformer-v21,200
ModelTask submission RPS limitConcurrent tasks
paraformer-8k-v220100

Fun-ASR audio file recognition

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRPM
fun-asr600
fun-asr-2025-11-07600
fun-asr-2025-08-25600
fun-asr-mtl100
fun-asr-mtl-2025-08-25100

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRPM
fun-asr600
fun-asr-2025-11-07
fun-asr-2025-08-25
fun-asr-mtl
fun-asr-mtl-2025-08-25

Fun-ASR real-time speech recognition

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelTask submission RPS limit
fun-asr-realtime20
fun-asr-realtime-2025-11-07

Chinese Mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelTask submission RPS limit
fun-asr-realtime20
fun-asr-realtime-2026-02-28
fun-asr-realtime-2025-11-07
fun-asr-realtime-2025-09-15
fun-asr-flash-8k-realtime
fun-asr-flash-8k-realtime-2026-01-28

Text embedding

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** These are per-minute limits. Equivalent per-second limits may also be applied (RPS = RPM/60; TPS = TPM/60).**
RPMTPM / jobs ** Counts both input and output tokens**
text-embedding-v41,8001,000,000
text-embedding-v36,00024,000,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit
Requests per second (RPS)TPM / jobs ** Counts both input and output tokens**
text-embedding-v4301,200,000

China (Hong Kong)

If you select the Hong Kong (China) deployment scope, model inference compute resources are restricted to Hong Kong (China). Static data is stored in your selected region. Supported region: China (Hong Kong).

ModelRate limit ** These are per-minute limits. Equivalent per-second limits may also be applied (RPS = RPM/60; TPS = TPM/60).**
RPMTPM / jobs ** Counts both input and output tokens**
text-embedding-v41,8001,000,000

Multimodal embedding

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** The following limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Input tokens only**
tongyi-embedding-vision-plus600200,000
tongyi-embedding-vision-flash

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** The following limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Input tokens only**
qwen3-vl-embedding2,4001,200,000
multimodal-embedding-v1120200,000

Text rerank

International

When the service deployment scope is International, model inference compute resources are dynamically scheduled globally (excluding Mainland China). Static data is stored in the region you select. The supported region for this deployment scope is Singapore.

ModelRate limit ** These are per-minute limits. The service may also enforce equivalent per-second limits on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Input tokens only**
qwen3-rerank5,4005,000,000,000

Chinese Mainland

If the service deployment scope is Mainland China, the model inference compute resources are limited to Mainland China. Static data is stored in the region that you select. The supported region for this deployment scope is China (Beijing).

ModelRate limit ** These are per-minute limits. The service may also enforce equivalent per-second limits on RPS (RPM/60) and TPS (TPM/60).**
RPMTPM ** Input tokens only**
qwen3-vl-rerank6009,000,000
gte-rerank-v25,0404,980,000,000

Domain-specific

Intent recognition

Note

Only the Chinese mainland service deployment scope is supported. Data storage is in the Beijing access region. Model inference compute resources are limited to the Chinese mainland.

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes input and output tokens**
tongyi-intent-detect-v31,2001,000,000

Role playing

International

If you select the International deployment scope, model inference compute resources are dynamically scheduled worldwide, excluding the Chinese mainland. Static data is stored in your selected region. Supported region: Singapore.

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes input and output tokens**
qwen-plus-character120500,000
qwen-flash-character120500,000
qwen-plus-character-ja120500,000

Chinese mainland

If you select the Chinese mainland deployment scope, model inference compute resources are restricted to the Chinese mainland. Static data is stored in your selected region. Supported region: China (Beijing).

ModelRate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.**
RPMTPM ** Includes input and output tokens**
qwen-plus-character120500,000
qwen-flash-character

Retired models

For details, see model deprecation.

Retired on January 30, 2026

CategoryModelRate limit
RPMTPM ** Counts input and output tokens**
Qwen-Plusqwen-plus-2024-11-2700
qwen-plus-2024-11-25
qwen-plus-2024-09-19
qwen-plus-2024-08-06
Qwen-Turboqwen-turbo-2024-09-19
Qwen-VLqwen-vl-max-2024-10-30
qwen-vl-max-2024-08-09
qwen-vl-plus-2024-08-09

Retired on August 20, 2025

CategoryModelRate limit
RPMTPM ** Counts input and output tokens**
Text generation - Qwenqwen2-72b-instruct00
qwen2-57b-a14b-instruct
qwen2-7b-instruct
qwen1.5-110b-chat
qwen1.5-72b-chat
qwen1.5-32b-chat
qwen1.5-14b-chat
qwen1.5-7b-chat

Mirror of Alibaba Cloud Model Studio docs for reference and RAG. Not affiliated with Alibaba Cloud.