Appearance
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 exceededorYou exceeded your current requests list: The Requests Per Minute (RPM) limit was triggered.Allocated quota exceededorYou 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?
Choose a model with a higher rate limit: Stable and latest versions have higher rate limits than older snapshot versions.
Optimize your request strategy
Adjust call frequency : If you receive a
Requests rate limit exceededorYou exceeded your current requests listerror, reduce how often you call the API.Reduce token consumption : If you receive an
Allocated quota exceededorYou exceeded your current quotaerror, shorten your input or limit your output length.Smooth request rate : If you receive a
Request rate increased too quicklyerror, distribute requests evenly across time windows. Use uniform scheduling, exponential backoff, or request queue buffering to avoid sudden spikes.
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-14after hitting a rate limit onqwen-plus-2025-07-28. Sample codeHELPCODEESCAPE-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())Split tasks: Long conversations and large documents consume tokens quickly. Break large tasks into smaller batches and submit them at different times.
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.
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.
Log on to the Model Studio console and go to the Rate Limit Increase page.
In the upper-right corner of the page, click Increase Temporary Rate Limit.
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.
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).
| Model | Rate limit ** The following limits are per minute. The service may also apply per-second limits of RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-rerank | 5,400 | 5,000,000,000 |
| qwen3-vl-rerank | 600 | 9,000,000 |
| gte-rerank-v2 | 5,040 | 4,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.
| Model | Rate limit ** The following limits are per minute. The service may also apply per-second limits of RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-rerank | 5,400 | 5,000,000,000 |
| gte-rerank-v2 | 5,040 | 4,980,000,000 |
Domain specific
Retired models
For details, see model deprecation.
Retired on March 30, 2026
| Category | Model name | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Input + output tokens** | ||
| Qwen language models | qwen2-72b-instruct | 0 | 0 |
| 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-VL | qwen2-vl-72b-instruct | ||
| qwen2-vl-7b-instruct | |||
| qwen2-vl-2b-instruct | |||
| qwen-vl-v1 | |||
| qwen-vl-chat-v1 | |||
| MiniMax | abab6.5g-chat | ||
| abab6.5t-chat | |||
| abab6.5s-chat | |||
| StableDiffusion - text-to-image | stable-diffusion-xl | ||
| stable-diffusion-v1.5 | |||
| stable-diffusion-3.5-large | |||
| stable-diffusion-3.5-large-turbo | |||
| FLUX - text-to-image | flux-schnell | ||
| flux-dev | |||
| flux-merged | |||
| Qwen-Audio | qwen2-audio-instruct | ||
| qwen-audio-chat | |||
| OpenNLU | opennlu-v1 |
Retired on January 30, 2026
| Category | Model name | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Input + output tokens** | ||
| Qwen-Max | qwen-max-2024-04-03 | 0 | 0 |
| Qwen-Plus | qwen-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-Turbo | qwen-turbo-2024-09-19 | ||
| qwen-turbo-2024-06-24 | |||
| Qwen-VL | qwen-vl-max-2024-10-30 | ||
| qwen-vl-max-2024-08-09 | |||
| qwen-vl-plus-2024-08-09 | |||
| Qwen-Audio | qwen-audio-turbo-2024-12-04 | ||
| qwen-audio-turbo-2024-08-07 | |||
| qwen-audio-asr-2024-12-04 |
Retired on July 30, 2025
| Category | Model name | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Input + output tokens** | ||
| Qwen-VL | qwen-vl-plus-2023-12-01 | 0 | 0 |
| Yi | yi-large | ||
| yi-medium | |||
| yi-large-rag | |||
| yi-large-turbo | |||
| Dolly | dolly-12b-v2 |
Retired on July 2, 2025
| Category | Model name | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Input + output tokens** | ||
| Llama - text input | llama3.3-70b-instruct | 0 | 0 |
| 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 input | llama3.2-90b-vision-instruct | ||
| llama3.2-11b-vision | |||
| Baichuan - Open source | baichuan2-13b-chat-v1 | ||
| baichuan2-7b-chat-v1 | |||
| baichuan-7b-v1 | |||
| ChatGLM | chatglm3-6b | ||
| chatglm-6b-v2 | |||
| Ziya | ziya-llama-13b-v1 | ||
| BELLE | belle-llama-13b-2m-v1 | ||
| Chatyuan | chatyuan-large-v2 | ||
| BiLLa | billa-7b-sft-v1 |
| Category | Model name | Rate limit | |
|---|---|---|---|
| Task submission RPS | Concurrent tasks | ||
| Cosplay Character Generation | wanx-style-cosplay-v1 | 0 | 0 |
| AST | wanx-ast | ||
| WordArt | wordart-surnames | ||
| AnyText | wanx-anytext-v1 |
Retired on May 8, 2025
| Category | Model name | Rate limit | Alternative model | |
|---|---|---|---|---|
| RPM | TPM ** Input + output tokens** | |||
| Qwen language models | qwen-max-2024-01-07(qwen-max-0107) | 0 | 0 | qwen-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 source | qwen-72b-chat | qwen2.5-72b-instruct | ||
| qwen-14b-chat | qwen2.5-14b-instruct | |||
| qwen-7b-chat | qwen2.5-7b-instruct | |||
| qwen-1.8b-chat | qwen2.5-1.5b-instruct | |||
| qwen-1.8b-longcontext-chat | qwen2.5-1.5b-instruct | |||
| qwen2-math-72b-instruct | qwen2.5-math-72b-instruct | |||
| qwen2-math-7b-instruct | qwen2.5-math-7b-instruct | |||
| qwen2-math-1.5b-instruct | qwen2.5-math-7b-instruct |
| Category | Model name | Rate limit | Alternative model | |
|---|---|---|---|---|
| Task submission RPS | Concurrent tasks | |||
| Motionshop | motionshop-video-detect | 0 | 0 | For 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 name | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Total of input and output tokens.** | |
| qwen3-max | 600 | 1,000,000 |
| qwen3-max-2025-09-23 | 60 | 100,000 |
| qwen3-max-preview | 600 | 1,000,000 |
| qwen3.6-plus | 30,000 | 5,000,000 |
| qwen3.6-plus-2026-04-02 | 600 | 1,000,000 |
| qwen3.6-flash | 15,000 | 5,000,000 |
| qwen3.6-flash-2026-04-16 | 60 | 1,000,000 |
| qwen3.5-plus | 30,000 | 5,000,000 |
| qwen3.5-plus-2026-02-15 | 600 | 1,000,000 |
| qwen-plus | 15,000 | 5,000,000 |
| qwen-plus-2025-12-01 | 60 | 1,000,000 |
| qwen-plus-2025-09-11 | ||
| qwen-plus-2025-07-28 | ||
| qwen3.5-flash | 30,000 | 10,000,000 |
| qwen3.5-flash-2026-02-23 | 600 | 1,000,000 |
| qwen-flash | 15,000 | 10,000,000 |
| qwen-flash-2025-07-28 | 60 | 1,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 name | Rate limit ** The limits below are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Counts both input and output tokens** | |
| qwen3.6-max-preview | 600 | 1,000,000 |
| qwen3-max | 600 | 1,000,000 |
| qwen3-max-2026-01-23 | ||
| qwen3-max-2025-09-23 | 60 | 100,000 |
| qwen3-max-preview | 600 | 1,000,000 |
| qwen-max | 600 | 1,000,000 |
| qwen-max-latest | 600 | 1,000,000 |
| qwen-max-2025-01-25(qwen-max-0125) | 60 | 100,000 |
| qwen3.6-plus | 15,000 | 5,000,000 |
| qwen3.6-plus-2026-04-02 | 60 | 1,000,000 |
| qwen3.6-flash | 15,000 | 5,000,000 |
| qwen3.6-flash-2026-04-16 | 60 | 1,000,000 |
| qwen3.5-plus | 30,000 | 5,000,000 |
| qwen3.5-plus-2026-04-20 | 600 | 1,000,000 |
| qwen3.5-plus-2026-02-15 | 600 | 1,000,000 |
| qwen-plus | 600 | 1,000,000 |
| qwen-plus-latest | 600 | 1,000,000 |
| qwen-plus-2025-12-01 | 120 | 1,000,000 |
| qwen-plus-2025-09-11 | 120 | |
| qwen-plus-2025-07-28 | 60 | 100,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-flash | 15,000 | 5,000,000 |
| qwen3.5-flash-2026-02-23 | 60 | 1,000,000 |
| qwen-flash | 600 | 5,000,000 |
| qwen-flash-2025-07-28 | 600 | 5,000,000 |
| qwen-plus | 60 | 100,000 |
| qwen-turbo | 600 | 5,000,000 |
| qwen-turbo-latest | 600 | 5,000,000 |
| qwen-turbo-2025-04-28(qwen-turbo-0428) | 60 | 1,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).
| Model | Rate limit ** These are per-minute limits. The service also enforces equivalent per-second limits: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-plus-us | 600 | 1,000,000 |
| qwen-plus-2025-12-01-us | 60 | |
| qwen-flash-us | 600 | 5,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).
| Model | Rate limit ** The following are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes both input and output tokens** | |
| qwen3.6-max-preview | 600 | 1,000,000 |
| qwen3-max | 30,000 | 5,000,000 |
| qwen3-max-2026-01-23 | 600 | 1,000,000 |
| qwen3-max-2025-09-23 | 60 | 100,000 |
| qwen3-max-preview | 600 | 1,000,000 |
| qwen-max | 1,200 | 1,000,000 |
| qwen-max-latest | ||
| qwen-max-2025-01-25(qwen-max-0125) | 60 | 100,000 |
| qwen-max-2024-09-19(qwen-max-0919) | ||
| qwen3.6-plus | 30,000 | 5,000,000 |
| qwen3.6-plus-2026-04-02 | 600 | 1,000,000 |
| qwen3.6-flash | 30,000 | 10,000,000 |
| qwen3.6-flash-2026-04-16 | 600 | 1,000,000 |
| qwen3.5-plus | 30,000 | 5,000,000 |
| qwen3.5-plus-2026-04-20 | 600 | 1,000,000 |
| qwen3.5-plus-2026-02-15 | 600 | 1,000,000 |
| qwen-plus | 30,000 | 5,000,000 |
| qwen-plus-latest | 15,000 | 1,200,000 |
| qwen-plus-2025-12-01 | 120 | 1,000,000 |
| qwen-plus-2025-09-11 | 60 | |
| 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-flash | 30,000 | 10,000,000 |
| qwen3.5-flash-2026-02-23 | 600 | 1,000,000 |
| qwen-flash | 30,000 | 10,000,000 |
| qwen-flash-2025-07-28 | 60 | 1,000,000 |
| qwq-plus | 600 | 1,000,000 |
| qwq-plus-latest | ||
| qwq-plus-2025-03-05 | 60 | 100,000 |
| qwen-turbo | 1,200 | 5,000,000 |
| qwen-turbo-latest | ||
| qwen-turbo-2025-04-28(qwen-turbo-0428) | 60 | 1,000,000 |
| qwen-turbo-2025-02-11(qwen-turbo-0211) | 5,000,000 | |
| qwen-turbo-2024-11-01(qwen-turbo-1101) | ||
| qwen-long-latest | 1,200 | 60,000 |
| qwen-long-2025-01-25(qwen-long-0125) | 3 | 7,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 name | Rate limit (triggered if any value is exceeded) ** The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-max | 600 | 1,000,000 |
| qwen3-max-2026-01-23 | ||
| qwen-plus | 600 | 1,000,000 |
| qwen-plus-2025-12-01 | 120 | 1,000,000 |
| qwen3.5-flash | 15,000 | 5,000,000 |
| qwen3.5-flash-2026-02-23 | 60 | 1,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 name | Rate limits ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-max | 600 | 1,000,000 |
| qwen3-max-2026-01-23 | ||
| qwen-plus | 600 | 1,000,000 |
| qwen-plus-2025-12-01 | 120 | 1,000,000 |
| qwen3.5-flash | 30,000 | 10,000,000 |
| qwen3.5-flash-2026-02-23 | 600 | 1,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-plus | 1,200 | 1,000,000 |
| qwen3-vl-plus-2025-09-23 | 60 | 100,000 |
| qwen3-vl-flash | 1,200 | 1,000,000 |
| qwen3-vl-flash-2025-10-15 | 60 | 100,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 | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-plus | 1,200 | 1,000,000 |
| qwen3-vl-plus-2025-12-19 | 60 | 100,000 |
| qwen3-vl-plus-2025-09-23 | 120 | 1,000,000 |
| qwen3-vl-flash | 1,200 | 1,000,000 |
| qwen3-vl-flash-2026-01-22 | 60 | 100,000 |
| qwen3-vl-flash-2025-10-15 | 120 | 1,000,000 |
| qwen-vl-max | 1,200 | 1,000,000 |
| qwen-vl-max-latest | ||
| qwen-vl-max-2025-08-13(qwen-vl-max-0813) | 60 | 100,000 |
| qwen-vl-max-2025-04-08(qwen-vl-max-0408) | 1,200 | 1,000,000 |
| qwen-vl-plus | ||
| qwen-vl-plus-latest | ||
| qwen-vl-plus-2025-08-15(qwen-vl-plus-0815) | 120 | 1,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-max | 60 | 100,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-flash-us | 1,200 | 1,000,000 |
| qwen3-vl-flash-2026-01-22-us | 120 | 1,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-plus | 3,000 | 5,000,000 |
| qwen3-vl-plus-2025-12-19 | 60 | 100,000 |
| qwen3-vl-plus-2025-09-23 | ||
| qwen3-vl-flash | 3,000 | 5,000,000 |
| qwen3-vl-flash-2026-01-22 | 60 | 100,000 |
| qwen3-vl-flash-2025-10-15 | ||
| qwen-vl-max | 1,200 | 1,000,000 |
| qwen-vl-max-latest | ||
| qwen-vl-max-2025-08-13(qwen-vl-max-0813) | 60 | 100,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-plus | 1,200 | 1,000,000 |
| qwen-vl-plus-latest | ||
| qwen-vl-plus-2025-08-15(qwen-vl-plus-0815) | 60 | 100,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-plus | 1,200 | 1,000,000 |
| qwen3-vl-plus-2025-12-19 | 60 | 100,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 | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-vl-plus | 1,200 | 1,000,000 |
| qwen3-vl-flash | 1,200 | 1,000,000 |
| qwen3-vl-flash-2026-01-22 | 60 | 100,000 |
| qwen3-vl-flash-2025-10-15 | 60 | 100,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 name | Rate limit ** Per-minute limit** | |
|---|---|---|
| RPM | TPM ** Input and output tokens** | |
| qwen3.5-omni-flash | 60 | 100,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 name | Rate limit ** Per-minute limit** | |
|---|---|---|
| RPM | TPM ** Input and output tokens** | |
| qwen3.5-omni-flash | 60 | 100,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.
| Parameter | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3.5-omni-plus-realtime | 60 | 100,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 | 10,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).
| Parameter | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3.5-omni-plus-realtime | 60 | 100,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).
| Model | Rate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-vl-ocr | 600 | 6,000,000 |
| qwen-vl-ocr-2025-11-20 | 1,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.
| Model | Rate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-vl-ocr | 600 | 6,000,000 |
| qwen-vl-ocr-2025-11-20 | 1,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).
| Model | Rate limit ** These are per-minute limits. The service also enforces limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-vl-ocr | 600 | 6,000,000 |
| qwen-vl-ocr-latest | 1,200 | |
| qwen-vl-ocr-2025-11-20 | ||
| qwen-vl-ocr-2025-04-13 | 600 | |
| 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.
| Model | Rate limit ** The limits below are per minute. The service may also enforce per-second limits for RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-math-plus | 1,200 | 1,000,000 |
| qwen-math-plus-latest | ||
| qwen-math-plus-2024-09-19(qwen-math-plus-0919) | 60 | 100,000 |
| qwen-math-plus-2024-08-16(qwen-math-plus-0816) | 10 | 20,000 |
| qwen-math-turbo | 1,200 | 1,000,000 |
| qwen-math-turbo-latest | ||
| qwen-math-turbo-2024-09-19(qwen-math-turbo-0919) | 60 | 100,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).
| Model | Rate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-coder-plus | 2,400 | 2,000,000 |
| qwen3-coder-plus-2025-09-23 | 60 | 1,000,000 |
| qwen3-coder-plus-2025-07-22 | ||
| qwen3-coder-flash | 1,200 | |
| qwen3-coder-flash-2025-07-28 | 60 |
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 | Rate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-coder-plus | 2,400 | 2,000,000 |
| qwen3-coder-plus-2025-09-23 | 60 | 1,000,000 |
| qwen3-coder-plus-2025-07-22 | 60 | 1,000,000 |
| qwen3-coder-flash | 600 | 5,000,000 |
| qwen3-coder-flash-2025-07-28 | 60 | 5,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 | Rate limit ** These limits are per minute. The service may also enforce per-second limits: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-coder-plus | 5,000 | 5,000,000 |
| qwen3-coder-plus-2025-09-23 | 60 | 1,000,000 |
| qwen3-coder-plus-2025-07-22 | ||
| qwen3-coder-flash | 5,000 | 5,000,000 |
| qwen3-coder-flash-2025-07-28 | 60 | 1,000,000 |
| qwen-coder-plus | 1,200 | |
| qwen-coder-plus-latest | ||
| qwen-coder-plus-2024-11-06(qwen-coder-plus-1106) | 120 | 200,000 |
| qwen-coder-turbo | 1,200 | 1,000,000 |
| qwen-coder-turbo-latest | ||
| qwen-coder-turbo-2024-09-19(qwen-coder-turbo-0919) | 60 | 100,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 name | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-mt-plus | 60 | 25,000 |
| qwen-mt-flash | 35,000 | |
| qwen-mt-lite | 100,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 name | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-mt-plus | 60 | 25,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 name | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-mt-lite-us | 60 | 100,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 name | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-mt-plus | 60 | 25,000 |
| qwen-mt-flash | 35,000 | |
| qwen-mt-lite | 100,000 | |
| qwen-mt-turbo | 35,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 name | Rate limit ** These are per-minute limits. The service may also enforce per-second limits calculated as RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-doc-turbo | 600 | 3,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 name | Rate limit ** These are per-minute limits. Per-second limits (RPS = RPM/60 and TPS = TPM/60) may also be enforced.** | |
|---|---|---|
| RPM | TPM ** Counts both input and output tokens** | |
| Qwen-Deep-Research | 120 | 1,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).
| Model | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes both input and output tokens** | |
| qwen3.5-397b-a17b | 600 | 1,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.
| Model | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes both input and output tokens** | |
| qwen3.5-397b-a17b | 600 | 1,000,000 |
| qwen3.5-122b-a10b | 1,000,000 | |
| qwen3.5-27b | 1,000,000 | |
| qwen3.6-35b-a3b | 1,000,000 | |
| qwen3.6-27b | 1,000,000 | |
| qwen3.5-35b-a3b | 5,000,000 | |
| qwen3-next-80b-a3b-thinking | 1,000,000 | |
| qwen3-next-80b-a3b-instruct | ||
| qwen3-235b-a22b-thinking-2507 | ||
| qwen3-235b-a22b-instruct-2507 | ||
| qwen3-30b-a3b-thinking-2507 | 5,000,000 | |
| qwen3-30b-a3b-instruct-2507 | ||
| qwen3-235b-a22b | 1,000,000 | |
| qwen3-32b | ||
| qwen3-30b-a3b | ||
| qwen3-14b | ||
| qwen3-8b | ||
| qwen3-4b | ||
| qwen3-1.7b | ||
| qwen3-0.6b | ||
| qwen2.5-14b-instruct-1m | 1,200 | 5,000,000 |
| qwen2.5-7b-instruct-1m | ||
| qwen2.5-72b-instruct | 60 | 150,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).
| Model | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes both input and output tokens** | |
| qwen3.5-397b-a17b | 600 | 1,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-32b | 2400 | |
| qwen3-14b | 600 | |
| qwen3-8b | ||
| qwen3-4b | ||
| qwen3-1.7b | ||
| qwen3-0.6b | ||
| qwq-32b | ||
| qwq-32b-preview | 1,200 | |
| qwen2.5-72b-instruct | ||
| qwen2.5-32b-instruct | ||
| qwen2.5-14b-instruct | ||
| qwen2.5-14b-instruct-1m | 5,000,000 | |
| qwen2.5-7b-instruct | 1,000,000 | |
| qwen2.5-7b-instruct-1m | 5,000,000 | |
| qwen2.5-3b-instruct | 2,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.
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Counts both input and output tokens** | |
| qwen3-vl-32b-thinking | 60 | 100,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-instruct | 1,200 | 1,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Counts both input and output tokens** | |
| qwen3-vl-235b-a22b-thinking | 60 | 100,000 |
| qwen3-vl-235b-a22b-instruct | ||
| qwen3-vl-32b-thinking | 600 | 1,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).
| Model | Rate limit ** Limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Counts both input and output tokens** | |
| qwen3-vl-32b-thinking | 600 | 1,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-thinking | 60 | 100,000 |
| qwen3-vl-235b-a22b-instruct | ||
| qwen2.5-vl-72b-instruct | ||
| qwen2.5-vl-32b-instruct | ||
| qwen2.5-vl-7b-instruct | 1,200 | 1,000,000 |
| qwen2.5-vl-3b-instruct | ||
| qwen2-vl-72b-instruct | ||
| qwen2-vl-7b-instruct | ||
| qwen2-vl-2b-instruct | ||
| qvq-72b-preview | 60 | 100,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.
| Model | Rate limit ** The following rate-limiting conditions are per minute, and the service may be limited by RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes Input and Output Tokens** | |
| qwen2.5-omni-7b | 60 | 100,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 | Rate limit ** The following are the per-minute rate limits. The service may also throttle based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Including input and output tokens** | |
| qwen2.5-omni-7b | 60 | 100,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 name | Rate limit ** Limits are specified per minute. The service may also enforce per-second limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-omni-30b-a3b-captioner | 60 | 100,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 name | Rate limit ** Limits are specified per minute. The service may also enforce per-second limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen3-omni-30b-a3b-captioner | 60 | 100,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.
| Model | Rate limit ** Limits are also enforced per second: RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen2.5-math-72b-instruct | 1,200 | 1,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 name | Rate limit ** The following are the per-minute rate limits: the service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Including input and output tokens** | |
| qwen3-coder-480b-a35b-instruct | 600 | 1,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 name | Rate limit ** The following are the per-minute rate-limiting conditions. The service may be limited by RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Including input and output tokens** | |
| qwen3-coder-next | 600 | 1,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 name | Rate limit ** The following rate limits are specified per minute, and the service may be throttled based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Including Input and Output Tokens** | |
| qwen3-coder-next | 600 | 1,000,000 |
| qwen3-coder-480b-a35b-instruct | ||
| qwen3-coder-30b-a3b-instruct | ||
| qwen2.5-coder-32b-instruct | 1,200 | |
| qwen2.5-coder-14b-instruct | ||
| qwen2.5-coder-7b-instruct | ||
| qwen2.5-coder-3b-instruct | 2,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 name | Rate limit ** The following are the per-minute rate limits, and the service may be throttled by RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Including Input and Output Tokens** | |
| qwen3-coder-480b-a35b-instruct | 600 | 1,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).
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| deepseek-v4-pro | 15,000 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| deepseek-v4-pro | 10,000 | 1,200,000 |
| deepseek-v4-flash | ||
| deepseek-v3.2 | 10,000 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| deepseek-v4-pro | 15,000 | 1,200,000 |
| deepseek-v4-flash | ||
| deepseek-v3.2 | 15,000 | 1,200,000 |
| deepseek-v3.2-exp | 15,000 | 1,200,000 |
| deepseek-v3.1 | 15,000 | 1,200,000 |
| deepseek-r1-0528 | 60 | 100,000 |
| deepseek-r1 | 15,000 | 1,200,000 |
| deepseek-v3 | ||
| deepseek-r1-distill-qwen-7b | ||
| deepseek-r1-distill-qwen-14b | ||
| deepseek-r1-distill-qwen-32b | ||
| deepseek-r1-distill-qwen-1.5b | 60 | 100,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| kimi-k2.5 | 500 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| kimi-k2.6 | 500 | 1,000,000 |
| kimi-k2.5 | 500 | 1,000,000 |
| kimi-k2-thinking | 500 | 1,000,000 |
| Moonshot-Kimi-K2-Instruct | 500 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| MiniMax-M2.5 | 500 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| glm-5.1 | 500 | 1,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 name | Rate limit ** These are per-minute limits. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| glm-5.1 | 500 | 1,000,000 |
| glm-5 | 500 | 1,000,000 |
| glm-4.7 | 500 | |
| glm-4.6 | 60 |
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 service | Model | Rate limit | |
|---|---|---|---|
| Task submission limit | Concurrent tasks | ||
| Text-to-image and image editing | qwen-image-2.0-pro | 2/minute | No limit for sync API |
| qwen-image-2.0-pro-2026-04-22 | 2/minute | No limit for sync API | |
| qwen-image-2.0-pro-2026-03-03 | 2/minute | No limit for sync API | |
| qwen-image-2.0 | 2/second | No limit for sync API | |
| qwen-image-2.0-2026-03-03 | 2/second | No limit for sync API | |
| Text-to-image | qwen-image-max | 2/minute | No limit for sync API |
| qwen-image-max-2025-12-30 | 2/minute | No limit for sync API | |
| qwen-image-plus | 2/second | No limit for sync API / 2 for async API | |
| qwen-image-plus-2026-01-09 | 2/second | No limit for sync API | |
| qwen-image | 2/second | No limit for sync API / 2 for async API | |
| Image editing | qwen-image-edit-max | 2/minute | No limit for sync API |
| qwen-image-edit-max-2026-01-16 | 2/minute | No limit for sync API | |
| qwen-image-edit-plus | 2/second | No limit for sync API | |
| qwen-image-edit-plus-2025-12-15 | 2/second | No limit for sync API | |
| qwen-image-edit-plus-2025-10-30 | 2/second | No limit for sync API | |
| qwen-image-edit | 2/second | No 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 service | Model | Rate limit | |
|---|---|---|---|
| Task submission limit | Concurrent tasks | ||
| Text-to-image and image editing | qwen-image-2.0-pro | 2/minute | No limit for sync API |
| qwen-image-2.0-pro-2026-04-22 | 2/minute | No limit for sync API | |
| qwen-image-2.0-pro-2026-03-03 | 2/minute | No limit for sync API | |
| qwen-image-2.0 | 2/second | No limit for sync API | |
| qwen-image-2.0-2026-03-03 | 2/second | No limit for sync API | |
| Text-to-image | qwen-image-max | 2/minute | No limit for sync API |
| qwen-image-max-2025-12-30 | 2/minute | No limit for sync API | |
| qwen-image-plus | 2/second | No limit for sync API / 2 for async API | |
| qwen-image-plus-2026-01-09 | 2/second | No limit for sync API | |
| qwen-image | 2/second | No limit for sync API / 2 for async API | |
| Image editing | qwen-image-edit-max | 2/minute | No limit for sync API |
| qwen-image-edit-max-2026-01-16 | 2/minute | No limit for sync API | |
| qwen-image-edit-plus | 2/second | No limit for sync API | |
| qwen-image-edit-plus-2025-12-15 | 2/second | No limit for sync API | |
| qwen-image-edit-plus-2025-10-30 | 2/second | No limit for sync API | |
| qwen-image-edit | 2/second | No limit for sync API | |
| Image translation | qwen-mt-image | 1/second | 2 |
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.
| Model | Rate limit | |
|---|---|---|
| Submission RPS limit | Concurrent tasks | |
| z-image-turbo | 2 | No 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 | Rate limit | |
|---|---|---|
| Submission RPS limit | Concurrent tasks | |
| z-image-turbo | 2 | No 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 service | Model | Rate limit | |
|---|---|---|---|
| Submission RPS limit | Concurrent tasks | ||
| Text-to-image | wan2.6-t2i | 5 | 5 |
| Image generation | wan2.6-image | 5 | 5 |
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 service | Model | Rate limit | |
|---|---|---|---|
| Submission RPS limit | Concurrent tasks | ||
| Image generation and editing | wan2.7-image-pro | 5 | 5 |
| wan2.7-image | |||
| wan2.6-image | |||
| Text-to-image | wan2.6-t2i | 5 | 5 |
| wan2.5-t2i-preview | |||
| wan2.2-t2i-flash | 2 | 2 | |
| wan2.2-t2i-plus | |||
| wan2.1-t2i-turbo | |||
| wan2.1-t2i-plus | |||
| Image editing | wan2.5-i2i-preview | 5 | 5 |
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 service | Model | Rate limit | |
|---|---|---|---|
| Submission RPS limit | Concurrent tasks | ||
| Image generation and editing | wan2.7-image-pro | 5 | 5 |
| wan2.7-image | |||
| wan2.6-image | |||
| Text-to-image | wan2.6-t2i | 1 | 5 |
| wan2.5-t2i-preview | 5 | ||
| wanx2.0-t2i-turbo | 2 | 2 | |
| wanx2.1-t2i-turbo | |||
| wanx2.1-t2i-plus | |||
| wan2.2-t2i-flash | |||
| wan2.2-t2i-plus | |||
| General image editing | wan2.5-i2i-preview | 5 | 5 |
| wanx2.1-imageedit | 2 | 2 |
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.
| Model | Rate limit | |
|---|---|---|
| Job submission limit | Concurrent tasks | |
| aitryon-plus | 10 | 5 |
| aitryon-parsing-v1 | 10 | No 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 name | Rate limits | |
|---|---|---|
| Task RPS limit | Concurrent tasks | |
| happyhorse-1.0-t2v | 5 | 5 |
| happyhorse-1.0-i2v | 5 | 5 |
| happyhorse-1.0-r2v | 5 | 5 |
| happyhorse-1.0-video-edit | 5 | 5 |
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 name | Rate limits | |
|---|---|---|
| Task RPS limit | Concurrent tasks | |
| happyhorse-1.0-t2v | 5 | 5 |
| happyhorse-1.0-i2v | 5 | 5 |
| happyhorse-1.0-r2v | 5 | 5 |
| happyhorse-1.0-video-edit | 5 | 5 |
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 name | Rate limits | |
|---|---|---|
| Task RPS limit | Concurrent tasks | |
| happyhorse-1.0-t2v | 5 | 5 |
| happyhorse-1.0-i2v | 5 | 5 |
| happyhorse-1.0-r2v | 5 | 5 |
| happyhorse-1.0-video-edit | 5 | 5 |
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 service | Model name | Rate limits | |
|---|---|---|---|
| RPS limit | Concurrent tasks | ||
| text-to-video | wan2.6-t2v | 5 | 5 |
| image-to-video - first frame | wan2.6-i2v | ||
| reference-to-video | wan2.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 service | Model name | Rate limits | |
|---|---|---|---|
| RPS limit | Concurrent tasks | ||
| text-to-video | wan2.7-t2v | 5 | 5 |
| wan2.7-t2v-2026-04-25 | 5 | 5 | |
| wan2.6-t2v | 5 | 5 | |
| wan2.5-t2v-preview | 5 | 5 | |
| wan2.2-t2v-plus | 2 | 2 | |
| wan2.1-t2v-turbo | |||
| wan2.1-t2v-plus | |||
| image-to-video | wan2.7-i2v | 5 | 5 |
| wan2.7-i2v-2026-04-25 | 5 | 5 | |
| image-to-video - first frame | wan2.6-i2v-flash | 5 | 5 |
| wan2.6-i2v | |||
| wan2.5-i2v-preview | |||
| wan2.2-i2v-flash | 2 | 2 | |
| wan2.1-i2v-plus | |||
| wan2.1-i2v-turbo | |||
| wan2.2-i2v-plus | |||
| image-to-video - first and last frames | wan2.2-kf2v-flash | ||
| wan2.1-kf2v-plus | 1 | ||
| general video editing | wan2.1-vace-plus | 2 | |
| wan2.7-videoedit | 5 | 5 | |
| reference-to-video | wan2.7-r2v | 5 | 5 |
| wan2.6-r2v-flash | 5 | 5 | |
| wan2.6-r2v | 5 | 5 | |
| image-to-motion | wan2.2-animate-move | 5 | 1 |
| video face swap | wan2.2-animate-mix | 5 | 1 |
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 service | Model name | Rate limits | |
|---|---|---|---|
| RPS limit | Concurrent tasks | ||
| text-to-video | wan2.6-t2v-us | 5 | 5 |
| image-to-video - first frame | wan2.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 service | Model name | Rate limits | |
|---|---|---|---|
| RPS limit | Concurrent tasks | ||
| text-to-video | wan2.7-t2v | 5 | 5 |
| wan2.7-t2v-2026-04-25 | 5 | 5 | |
| wan2.6-t2v | 5 | 5 | |
| wan2.5-t2v-preview | 5 | 5 | |
| wan2.2-t2v-plus | 2 | 2 | |
| wan2.1-t2v-turbo | |||
| wan2.1-t2v-plus | |||
| image-to-video | wan2.7-i2v | 5 | 5 |
| wan2.7-i2v-2026-04-25 | 5 | 5 | |
| image-to-video - first frame | wan2.6-i2v-flash | 5 | 5 |
| wan2.6-i2v | |||
| wan2.5-i2v-preview | |||
| wan2.2-i2v-plus | 2 | 2 | |
| wan2.1-i2v-turbo | |||
| wan2.1-i2v-plus | |||
| image-to-video - first and last frames | wan2.2-kf2v-flash | ||
| wan2.1-kf2v-plus | |||
| general video editing | wan2.1-vace-plus | ||
| wan2.7-videoedit | 5 | 5 | |
| reference-to-video | wan2.7-r2v | 5 | 5 |
| wan2.6-r2v-flash | 5 | 5 | |
| wan2.6-r2v | 5 | 5 | |
| digital human s2v | wan2.2-s2v-detect | 5 | No concurrency limit for synchronous calls |
| wan2.2-s2v | 1 | ||
| image-to-motion | wan2.2-animate-move | 5 | 1 |
| video face swap | wan2.2-animate-mix | 5 | 1 |
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 name | RPS limit | Concurrent tasks |
|---|---|---|
| animate-anyone-detect-gen2 | 5 | No concurrency limit for synchronous calls |
| animate-anyone-template-gen2 | 1One 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 name | RPS limit | Concurrent tasks |
|---|---|---|
| emo-detect-v1 | 5 | No concurrency limit for synchronous calls |
| emo-v1 | 1One 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 name | RPS limit | Concurrent tasks |
|---|---|---|
| liveportrait-detect | 5 | No concurrency limit for synchronous calls |
| liveportrait | 1One 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 name | RPS limit | Concurrent tasks |
|---|---|---|
| videoretalk | 1 | 1One 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 name | RPS limit | Concurrent tasks |
|---|---|---|
| emoji-detect-v1 | 1 | No concurrency limit for synchronous calls |
| emoji-v1 | 1One 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 name | RPS limit | Concurrent tasks |
|---|---|---|
| video-style-transform | 20 | 2One 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.
| Model | Requests per minute (RPM) |
|---|---|
| fun-music-v1 | 180 |
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
| Model | RPM |
|---|---|
| qwen3-tts-instruct-flash | 180 |
| qwen3-tts-instruct-flash-2026-01-26 | 180 |
Qwen3-TTS-VD
| Model | RPM |
|---|---|
| qwen3-tts-vd-2026-01-26 | 180 |
Qwen3-TTS-VC
| Model | RPM |
|---|---|
| qwen3-tts-vc-2026-01-22 | 180 |
Qwen3-TTS-Flash
| Model | RPM |
|---|---|
| qwen3-tts-flash | 180 |
| qwen3-tts-flash-2025-11-27 | 180 |
| qwen3-tts-flash-2025-09-18 | 10 |
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
| Model | RPM |
|---|---|
| qwen3-tts-instruct-flash | 180 |
| qwen3-tts-instruct-flash-2026-01-26 | 180 |
Qwen3-TTS-VD
| Model | RPM |
|---|---|
| qwen3-tts-vd-2026-01-26 | 180 |
Qwen3-TTS-VC
| Model | RPM |
|---|---|
| qwen3-tts-vc-2026-01-22 | 180 |
Qwen3-TTS-Flash
| Model | RPM |
|---|---|
| qwen3-tts-flash | 180 |
| qwen3-tts-flash-2025-11-27 | 180 |
| qwen3-tts-flash-2025-09-18 | 10 |
Qwen-TTS
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen-tts | 10 | 100,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
| Model | RPM |
|---|---|
| qwen3-tts-instruct-flash-realtime | 180 |
| qwen3-tts-instruct-flash-realtime-2026-01-22 | 180 |
Qwen3-TTS-VD-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-vd-realtime-2026-01-15 | 180 |
| qwen3-tts-vd-realtime-2025-12-16 |
Qwen3-TTS-VC-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-vc-realtime-2026-01-15 | 180 |
| qwen3-tts-vc-realtime-2025-11-27 |
Qwen3-TTS-Flash-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-flash-realtime | 180 |
| qwen3-tts-flash-realtime-2025-11-27 | 180 |
| qwen3-tts-flash-realtime-2025-09-18 | 10 |
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
| Model | RPM |
|---|---|
| qwen3-tts-instruct-flash-realtime | 180 |
| qwen3-tts-instruct-flash-realtime-2026-01-22 | 180 |
Qwen3-TTS-VD-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-vd-realtime-2026-01-15 | 180 |
| qwen3-tts-vd-realtime-2025-12-16 |
Qwen3-TTS-VC-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-vc-realtime-2026-01-15 | 180 |
| qwen3-tts-vc-realtime-2025-11-27 |
Qwen3-TTS-Flash-Realtime
| Model | RPM |
|---|---|
| qwen3-tts-flash-realtime | 180 |
| qwen3-tts-flash-realtime-2025-11-27 | 180 |
| qwen3-tts-flash-realtime-2025-09-18 | 10 |
Qwen-TTS-Realtime
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen-tts-realtime | 10 | 100,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.
| Model | RPM |
|---|---|
| qwen-voice-enrollment | 180 |
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 | RPM |
|---|---|
| qwen-voice-enrollment | 180 |
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.
| Model | RPM |
|---|---|
| qwen-voice-design | 180 |
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 | RPM |
|---|---|
| qwen-voice-design | 180 |
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.
| Model | Task submission RPS limit |
|---|---|
| cosyvoice-v3-plus | 3 |
| 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).
| Model | Task submission RPS limit |
|---|---|
| cosyvoice-v3.5-plus | 3 |
| 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.
| Model | Task submission RPS limit |
|---|---|
| voice-enrollment | 10 |
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 | Task submission RPS limit |
|---|---|
| voice-enrollment | 10 |
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.
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen3-livetranslate-flash | 100 | 100,000 |
| qwen3-livetranslate-flash-2025-12-01 | 6,000 | 1,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 | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen3-livetranslate-flash | 100 | 100,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.
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen3-livetranslate-flash-realtime | 10 | 100,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).
| Model | Rate 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).** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens.** | |
| qwen3-livetranslate-flash-realtime | 10 | 100,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
| Model | RPM |
|---|---|
| qwen3-asr-flash-filetrans | 100 |
| qwen3-asr-flash-filetrans-2025-11-17 |
Qwen3-ASR-Flash
| Model | RPM |
|---|---|
| qwen3-asr-flash | 100 |
| 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).
| Model | RPM |
|---|---|
| qwen3-asr-flash-us | 100 |
| 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
| Model | RPM |
|---|---|
| qwen3-asr-flash-filetrans | 100 |
| qwen3-asr-flash-filetrans-2025-11-17 |
Qwen3-ASR-Flash
| Model | RPM |
|---|---|
| qwen3-asr-flash | 100 |
| 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.
| Model | RPS |
|---|---|
| qwen3-asr-flash-realtime | 20 |
| 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).
| Model | RPS |
|---|---|
| qwen3-asr-flash-realtime | 20 |
| 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.
| Model | Task submission RPS limit |
|---|---|
| paraformer-realtime-v2 | 20 |
| paraformer-realtime-8k-v2 |
| Model | RPM |
|---|---|
| paraformer-v2 | 1,200 |
| Model | Task submission RPS limit | Concurrent tasks |
|---|---|---|
| paraformer-8k-v2 | 20 | 100 |
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.
| Model | RPM |
|---|---|
| fun-asr | 600 |
| fun-asr-2025-11-07 | 600 |
| fun-asr-2025-08-25 | 600 |
| fun-asr-mtl | 100 |
| fun-asr-mtl-2025-08-25 | 100 |
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 | RPM |
|---|---|
| fun-asr | 600 |
| 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.
| Model | Task submission RPS limit |
|---|---|
| fun-asr-realtime | 20 |
| 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).
| Model | Task submission RPS limit |
|---|---|
| fun-asr-realtime | 20 |
| 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.
| Model | Rate limit ** These are per-minute limits. Equivalent per-second limits may also be applied (RPS = RPM/60; TPS = TPM/60).** | |
|---|---|---|
| RPM | TPM / jobs ** Counts both input and output tokens** | |
| text-embedding-v4 | 1,800 | 1,000,000 |
| text-embedding-v3 | 6,000 | 24,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 | Rate limit | |
|---|---|---|
| Requests per second (RPS) | TPM / jobs ** Counts both input and output tokens** | |
| text-embedding-v4 | 30 | 1,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).
| Model | Rate limit ** These are per-minute limits. Equivalent per-second limits may also be applied (RPS = RPM/60; TPS = TPM/60).** | |
|---|---|---|
| RPM | TPM / jobs ** Counts both input and output tokens** | |
| text-embedding-v4 | 1,800 | 1,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.
| Model | Rate limit ** The following limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Input tokens only** | |
| tongyi-embedding-vision-plus | 600 | 200,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).
| Model | Rate limit ** The following limits are per minute. The service may also enforce limits based on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Input tokens only** | |
| qwen3-vl-embedding | 2,400 | 1,200,000 |
| multimodal-embedding-v1 | 120 | 200,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.
| Model | Rate limit ** These are per-minute limits. The service may also enforce equivalent per-second limits on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Input tokens only** | |
| qwen3-rerank | 5,400 | 5,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).
| Model | Rate limit ** These are per-minute limits. The service may also enforce equivalent per-second limits on RPS (RPM/60) and TPS (TPM/60).** | |
|---|---|---|
| RPM | TPM ** Input tokens only** | |
| qwen3-vl-rerank | 600 | 9,000,000 |
| gte-rerank-v2 | 5,040 | 4,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.
| Model | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| tongyi-intent-detect-v3 | 1,200 | 1,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.
| Model | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-plus-character | 120 | 500,000 |
| qwen-flash-character | 120 | 500,000 |
| qwen-plus-character-ja | 120 | 500,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 | Rate limit ** These are per-minute limits. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits.** | |
|---|---|---|
| RPM | TPM ** Includes input and output tokens** | |
| qwen-plus-character | 120 | 500,000 |
| qwen-flash-character |
Retired models
For details, see model deprecation.
Retired on January 30, 2026
| Category | Model | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Counts input and output tokens** | ||
| Qwen-Plus | qwen-plus-2024-11-27 | 0 | 0 |
| qwen-plus-2024-11-25 | |||
| qwen-plus-2024-09-19 | |||
| qwen-plus-2024-08-06 | |||
| Qwen-Turbo | qwen-turbo-2024-09-19 | ||
| Qwen-VL | qwen-vl-max-2024-10-30 | ||
| qwen-vl-max-2024-08-09 | |||
| qwen-vl-plus-2024-08-09 |
Retired on August 20, 2025
| Category | Model | Rate limit | |
|---|---|---|---|
| RPM | TPM ** Counts input and output tokens** | ||
| Text generation - Qwen | qwen2-72b-instruct | 0 | 0 |
| 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 |