Rate limiting
Alibaba Cloud Model Studio applies rate limiting to model calls at the Alibaba Cloud account level, aggregating usage across all RAM users, workspaces, and API keys under the account. Requests are rejected when the limit is exceeded and typically recover automatically within one minute.
Rate limiting rules
- Account-level rate limiting: Rate limits are applied at the root account level. The usage of all RAM users, workspaces, and API keys under the account is combined.
- Model-specific rate limiting: Each model has its own rate limit. For more information, see the tables below.
Request body size limits
The API gateway enforces the following limits on the request body size:
| Request type | Limit |
|---|---|
| Requests without Base64 content | Maximum request body size: 16 MiB |
| Requests with Base64 content (Anthropic protocol) | Maximum single Base64 content: 32 MiB |
| Requests with Base64 content (other protocols) | Maximum single Base64 content: 20 MiB |
| Requests with Base64 content (overall request body) | Maximum: 64 MiB |
NoteAfter Base64 decoding on the server side, the total request body size must still not exceed 16 MiB. Requests exceeding these limits will be rejected by the gateway with an HTTP 413 error.
FAQ
Why is rate limiting triggered?
You can identify the type of rate limit triggered based on the error message:
Requests rate limit exceededorYou exceeded your current requests list: This indicates that the requests per minute (RPM) limit was triggered.Allocated quota exceededorYou exceeded your current quota: This indicates that the tokens per minute (TPM) limit was triggered.Request rate increased too quickly: The request frequency surged in a short period, triggering system stability protection. This can occur even if the total number of calls has not reached the RPM or TPM limits.- For other errors, see Error codes to confirm the cause.
In addition to RPM and TPM, rate limiting may be enforced at the per-second level for requests per second (RPS), which is RPM/60, and tokens per second (TPS), which is TPM/60. Even if the total number of calls per minute does not exceed the limit, a burst of requests in a short time can still trigger rate limiting.
How to view model usage
One hour after you call a model, go to the Monitoring 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 from rate limiting?
Recovery usually occurs within one minute. If other errors occur, see Error codes for troubleshooting.
Is model response speed related to payment status?
Model response speed is not related to whether you use free quota or paid calls. Free quota and paid calls use the same model service infrastructure, so the generation speed for a given model is the same. Free quota only controls whether a request is accepted: once the free quota is exhausted, the request is rejected with a 403 error (if you have enabled stop when the free quota is used up). This does not reduce the generation speed of any request that has already been accepted.
What factors affect model response speed?
- Model type: lightweight models (such as qwen-flash) generate responses faster than larger models (such as qwen-max).
- Output length: the more tokens a response contains, the longer the total generation time.
- Server load: response speed may fluctuate slightly during peak periods.
Does rate limiting reduce the generation speed of accepted requests?
No. Rate limiting (RPM/TPM) only rejects requests that exceed the limit, returning a 429 error. When the free quota is exhausted (if you have enabled stop when the free quota is used up), requests are rejected with a 403 error. Neither case affects the generation speed of requests that have already been accepted: 429 indicates rate limiting, and 403 indicates quota exhaustion — both are rejection mechanisms, not speed throttling.
How to avoid rate limiting
-
Choose models with higher rate limits
- Prioritize models with higher rate limits, such as qwen-plus.
- Stable or latest versions have more lenient rate limits than dated snapshot versions.
-
Optimize your call strategy
- Reduce call frequency: If you receive a
Requests rate limit exceededorYou exceeded your current requests listerror, lower the API call frequency. - Reduce token consumption: If you receive an
Allocated quota exceededorYou exceeded your current quotaerror, shorten the input or limit the output length. - Smooth the request rate: If you receive a
Request rate increased too quicklyerror, use uniform scheduling, exponential backoff, or a request queue to distribute requests evenly and avoid sudden peaks.
- Reduce call frequency: If you receive a
-
Add a backup model
If rate limiting is triggered, you can switch to a backup model to continue generation. This can reduce the probability of failure and increase throughput. The following code automatically retries with
qwen-plus-2025-07-14after a rate limit is triggered forqwen-plus-2025-07-28. You can also choose a model from a different series (such as qwen-flash) as the backup model to further reduce the risk that the primary and backup models are rate limited at the same time.Sample code
import os import asyncio from openai import AsyncOpenAI, APIStatusError # Configure 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, # The following is the URL for the China (Beijing) region. Replace {WorkspaceId} with your actual workspace ID. base_url="https://{WorkspaceId}.cn-beijing.maas.aliyuncs.com/compatible-mode/v1" ) async def send_request(model): """Sends 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 or large documents can consume many tokens quickly. You can split large batch tasks into smaller batches and submit them at different times.
-
Use batch inference: For tasks that do not require real-time responses, you can use the Batch API. Batch requests are not subject to real-time rate limits, but you must consider queuing and processing time.
-
Increase rate limits: If the default rate limits are insufficient, you can increase the temporary TPM quota for a model on the Increase Rate Limits page in the Model Studio console. The increase takes effect immediately. For more information, see Increase temporary rate limits.
How to control token usage or costs
Rate limiting only restricts the request rate per unit of time; it does not cap cumulative usage. To control token usage or costs, use the following methods:
- Set a spending limit and cost alerts: On the Billing card, configure Cost alerts to enable a monthly spending limit and threshold notifications. You are notified when the threshold is reached, which helps you avoid overspending. For more information, see Query bills and manage costs.
- Enable stop when the free quota is used up: For models that offer a free quota, you can enable stop when the free quota is used up so that calls stop automatically once the free quota is exhausted, which prevents additional charges. For more information, see Free quota.
- Monitor model usage: Regularly check the token usage of each model to detect abnormal growth in time. See How to view model usage above.
Will I still be rate limited after I top up my account?
Topping up your account does not change the default RPM and TPM rate limits of a model. Rate limits are configured at the Alibaba Cloud account level and are independent of billing. Topping up (pay-as-you-go) only ensures that your account is not suspended for overdue payments; it does not raise your rate limits.
To obtain higher rate limits, see the How to avoid rate limiting section in this topic, or apply for an increase on the Increase Rate Limits page in the Model Studio console. For more information, see Increase temporary rate limits.
Increase temporary rate limits
If the default rate limits are insufficient, you can increase a model's temporary TPM quota in the Model Studio console.
This feature is currently available in the China (Beijing) and Singapore regions.
- Log on to the Model Studio console and go to the Increase Rate Limits page.
- Click Increase Temporary Rate Limit in the upper-right corner.
- In the dialog box that appears, select a Model and enter the desired value for Token Account Limit (Token/60 seconds). The dialog box displays the current quota and the maximum configurable limit.
- Click Confirm. The increased quota takes effect immediately.
After the quota increase takes effect, you can confirm it in the following ways:
- On the Increase Rate Limits page, view the models with increased quotas and their corresponding rate limit data in the list.
- In the Model Square, go to the details page of the corresponding model to view the updated rate limit data.
Note
- The models for which you can temporarily increase quotas are listed in the dialog box on the Increase Rate Limits page.
- Submitting another request for a model that already has an increased quota is considered a new application, and the validity period is reset to 30 days.
- Request a quota based on your actual needs. If the provisioned capacity significantly exceeds actual usage for a long time, the system may restore it to the default value after prior notification.
- If the available rate limit quota still does not meet your needs, contact your account manager to request a further increase.
Text generation - Qwen
Qwen language model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.8-max
| ||
qwen3.8-max-0902 | ||
qwen3.8-flash
| ||
qwen3.7-max
| 30,000 | 5,000,000 |
qwen3.7-max-2026-06-08 | 600 | 1,000,000 |
qwen3.7-max-2026-05-20 | 600 | 1,000,000 |
qwen3.7-max-preview | 60 | 500,000 |
qwen3.7-max-2026-05-17 | 60 | 500,000 |
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 |
qwen3.7-plus | 30,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | 600 | 1,000,000 |
qwen3.6-plus
| 30,000 | 5,000,000 |
qwen3.6-plus-2026-04-02 | 600 | 1,000,000 |
qwen3.7-flash
| 30,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | 30,000 | 5,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 | 1,000,000 |
qwen-plus-2025-07-28 (qwen-plus-0728) | 60 | 1,000,000 |
qwen-plus-2025-07-14 (qwen-plus-0714) | 60 | 100,000 |
qwen-plus-2025-04-28 (qwen-plus-0428) | 60 | 1,000,000 |
qwen-plus-2025-01-25 (qwen-plus-0125) | 60 | 150,000 |
qwen-plus-2025-01-12 (qwen-plus-0112) | 60 | 150,000 |
qwen-plus-2024-12-20 (qwen-plus-1220) | 60 | 150,000 |
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 |
qwen-turbo
| 1,200 | 5,000,000 |
qwq-plus
| 600 | 1,000,000 |
qwen-long
| 1,200 | 3,000,000 |
qwen-long-latest
| 1,200 | 60,000 |
qwen-long-2025-01-25 (qwen-long-0125) | 3 | 7,500 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.8-max | Global | 30,000 | 5,000,000 |
qwen3.8-max-0902 | Global | 30,000 | 150,000 |
qwen3.8-flash | Global | 30,000 | 5,000,000 |
qwen3.7-max | Global | 30,000 | 5,000,000 |
qwen3.7-max-us | US | 600 | 1,000,000 |
qwen3.7-max-2026-06-08 | Global | 600 | 1,000,000 |
qwen3.7-max-2026-05-20 | Global | 600 | 1,000,000 |
qwen3-max | Global | 600 | 1,000,000 |
qwen3-max-preview | Global | 600 | 1,000,000 |
qwen3-max-2025-09-23 | Global | 60 | 100,000 |
qwen3.7-plus | Global | 30,000 | 5,000,000 |
qwen3.7-plus-us | US | 15,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | Global | 600 | 1,000,000 |
qwen3.6-plus | Global | 30,000 | 5,000,000 |
qwen3.6-plus-2026-04-02 | Global | 600 | 1,000,000 |
qwen3.7-flash | Global | 15,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | Global | 60 | 1,000,000 |
qwen3.6-flash | Global | 15,000 | 5,000,000 |
qwen3.6-flash-2026-04-16 | Global | 60 | 1,000,000 |
qwen3.6-flash-us | US | 15,000 | 5,000,000 |
qwen3.5-plus | Global | 30,000 | 5,000,000 |
qwen3.5-plus-2026-02-15 | Global | 600 | 1,000,000 |
qwen-plus | Global | 15,000 | 5,000,000 |
qwen-plus-us | US | 600 | 1,000,000 |
qwen-plus-2025-12-01 | Global | 60 | 1,000,000 |
qwen-plus-2025-09-11 | Global | 60 | 1,000,000 |
qwen-plus-2025-07-28 | Global | 60 | 1,000,000 |
qwen-plus-2025-12-01-us | US | 60 | 1,000,000 |
qwen3.5-flash | Global | 30,000 | 10,000,000 |
qwen3.5-flash-2026-02-23 | Global | 600 | 1,000,000 |
qwen-flash | Global | 15,000 | 10,000,000 |
qwen-flash-us | US | 30000 | 10,000,000 |
qwen-flash-2025-07-28 | Global | 60 | 1,000,000 |
qwen-flash-2025-07-28-us | US | 600 | 5,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.8-max | International | ||
qwen3.8-max-0902 | International | ||
qwen3.8-flash | International | ||
qwen3.7-max | International | 600 | 1,000,000 |
qwen3.7-max-2026-06-08 | International | 60 | 1,000,000 |
qwen3.7-max-2026-05-20 | International | 60 | 1,000,000 |
qwen3.6-max-preview | International | 600 | 1,000,000 |
qwen3-max | International | 600 | 1,000,000 |
qwen3-max-2026-01-23 | International | 600 | 1,000,000 |
qwen3-max-2025-09-23 | International | 60 | 100,000 |
qwen3-max-preview | International | 600 | 1,000,000 |
qwen-max
| International | 600 | 1,000,000 |
qwen3.7-plus | International | 15,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | International | 60 | 1,000,000 |
qwen3.6-plus | International | 15,000 | 5,000,000 |
qwen3.6-plus-2026-04-02 | International | 60 | 1,000,000 |
qwen3.7-flash | International | 15,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | International | 15,000 | 5,000,000 |
qwen3.6-flash | International | 15,000 | 5,000,000 |
qwen3.6-flash-2026-04-16 | International | 60 | 1,000,000 |
qwen3.5-plus | International | 15,000 | 5,000,000 |
qwen3.5-plus-2026-04-20 | International | 600 | 1,000,000 |
qwen3.5-plus-2026-02-15 | International | 60 | 1,000,000 |
qwen-plus-latest | International | 600 | 1,000,000 |
qwen-plus-2025-12-01 | International | 120 | 1,000,000 |
qwen-plus-2025-09-11 | International | 120 | 1,000,000 |
qwen-plus-2025-07-28 | International | 60 | 100,000 |
qwen-plus-2025-07-14 (qwen-plus-0714) | International | 60 | 100,000 |
qwen-plus-2025-04-28 (qwen-plus-0428) | International | 60 | 1,000,000 |
qwen-plus-2025-01-25 (qwen-plus-0125) | International | 60 | 100,000 |
qwen3.5-flash | International | 15,000 | 5,000,000 |
qwen3.5-flash-2026-02-23 | International | 60 | 1,000,000 |
qwen-flash | International | 600 | 5,000,000 |
qwen-flash-2025-07-28 | International | 600 | 5,000,000 |
qwq-plus | International | 60 | 100,000 |
qwen-turbo
| International | 600 | 5,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.8-max | Global | 30,000 | 5,000,000 |
qwen3.8-max-0902 | Global | 30,000 | 150,000 |
qwen3.8-flash | Global | 30,000 | 5,000,000 |
qwen3.7-max | Global | 30,000 | 5,000,000 |
qwen3.7-max-2026-06-08 | Global | 600 | 1,000,000 |
qwen3.7-max-2026-05-20 | Global | 600 | 1,000,000 |
qwen3-max | Global | 600 | 1,000,000 |
qwen3-max | EU | 600 | 1,000,000 |
qwen3-max-preview | Global | 600 | 1,000,000 |
qwen3-max-2026-01-23 | EU | 60 | 100,000 |
qwen3-max-2025-09-23 | Global | 60 | 100,000 |
qwen3.7-plus | Global | 30,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | Global | 600 | 1,000,000 |
qwen3.6-plus | Global | 30,000 | 5,000,000 |
qwen3.6-plus-2026-04-02 | Global | 600 | 1,000,000 |
qwen3.7-flash | Global | 15,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | Global | 15,000 | 5,000,000 |
qwen3.6-flash | Global | 15,000 | 5,000,000 |
qwen3.6-flash-2026-04-16 | Global | 60 | 1,000,000 |
qwen3.5-plus | Global | 30,000 | 5,000,000 |
qwen3.5-plus-2026-02-15 | Global | 600 | 1,000,000 |
qwen-plus | Global | 600 | 1,000,000 |
qwen-plus | EU | 600 | 1,000,000 |
qwen-plus-2025-12-01 | Global | 120 | 1,000,000 |
qwen-plus-2025-12-01 | EU | 120 | 1,000,000 |
qwen-plus-2025-09-11 | Global | 60 | 1,000,000 |
qwen-plus-2025-07-28 | Global | 60 | 1,000,000 |
qwen3.5-flash | Global | 35,000 | 10,000,000 |
qwen3.5-flash | EU | 35,000 | 10,000,000 |
qwen3.5-flash-2026-02-23 | Global | 600 | 1,000,000 |
qwen3.5-flash-2026-02-23 | EU | 600 | 1,000,000 |
qwen-flash | Global | 30,000 | 10,000,000 |
qwen-flash-2025-07-28 | Global | 60 | 1,000,000 |
Japan (Tokyo)
| Model name | Service deployment scope | Rate limit conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limits. The service may also enforce per-second limits at RPS (RPM/60) and TPS (TPM/60) | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
qwen3.8-max | Global | 30,000 | 5,000,000 |
qwen3.8-max-0902 | Global | 30,000 | 150,000 |
qwen3.8-flash | Global | 30,000 | 5,000,000 |
qwen3.7-max | Global | 600 | 1,000,000 |
qwen3.7-max-2026-05-20 | Global | 60 | 1,000,000 |
qwen3.7-plus | Global | 15,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | Global | 60 | 1,000,000 |
qwen3.7-plus | Japan | 15,000 | 5,000,000 |
qwen3.7-plus-2026-05-26 | Japan | 60 | 1,000,000 |
qwen3.6-plus | Global | 15,000 | 5,000,000 |
qwen3.6-plus-2026-04-02 | Global | 60 | 1,000,000 |
qwen3.7-flash | Global | 15,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | Global | 15,000 | 5,000,000 |
qwen3.6-flash | Global | 15,000 | 10,000,000 |
qwen3.6-flash-2026-04-16 | Global | 60 | 1,000,000 |
Hong Kong (China)
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
qwen3.8-max | Hong Kong (China) | 600 | 1,000,000 |
qwen3.8-max-0902 | Hong Kong (China) | 600 | 150,000 |
qwen3.8-flash | Global | 30,000 | 5,000,000 |
qwen3-max | Hong Kong (China) | 600 | 1,000,000 |
qwen3-max-2026-01-23 | Hong Kong (China) | 60 | 100,000 |
qwen3.6-plus | Global | 30,000 | 5,000,000 |
qwen3.7-flash | Global | 15,000 | 5,000,000 |
qwen3.7-flash-2026-07-15 | Global | 15,000 | 5,000,000 |
qwen3.6-flash | Global | 30,000 | 10,000,000 |
qwen-plus | Hong Kong (China) | 600 | 1,000,000 |
qwen-plus-2025-12-01 | Hong Kong (China) | 60 | 100,000 |
qwen3.5-flash | Hong Kong (China) | 30,000 | 10,000,000 |
qwen3.5-flash-2026-02-23 | Hong Kong (China) | 600 | 1,000,000 |
Qwen-VL (visual understanding/image-to-text)
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (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 | 60 | 100,000 |
qwen3-vl-flash
| 3,000 | 5,000,000 |
qwen3-vl-flash-2026-01-22 | 60 | 100,000 |
qwen3-vl-flash-2025-10-15 | 60 | 100,000 |
qwen-vl-max
| 1,200 | 1,000,000 |
qwen-vl-plus
| 1,200 | 1,000,000 |
qvq-max | 60 | 100,000 |
qvq-plus | 60 | 100,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-plus | Global | 6,000 | 10,000,000 |
qwen3-vl-plus-2025-09-23 | Global | 60 | 100,000 |
qwen3-vl-flash | Global | 1,200 | 1,000,000 |
qwen3-vl-flash-us | US | 1,200 | 1,000,000 |
qwen3-vl-flash-2025-10-15 | Global | 60 | 100,000 |
qwen3-vl-flash-2025-10-15-us | US | 120 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-plus | International | 1,200 | 1,000,000 |
qwen3-vl-plus-2025-12-19 | International | 60 | 100,000 |
qwen3-vl-plus-2025-09-23 | International | 120 | 1,000,000 |
qwen3-vl-flash | International | 1,200 | 1,000,000 |
qwen3-vl-flash-2026-01-22 | International | 60 | 100,000 |
qwen3-vl-flash-2025-10-15 | International | 120 | 1,000,000 |
qwen-vl-max | International | 1,200 | 1,000,000 |
qwen-vl-plus | International | 1,200 | 1,000,000 |
qvq-max | International | 60 | 100,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-plus | Global | 2,000 | 1,000,000 |
qwen3-vl-plus | EU | 2,000 | 1,000,000 |
qwen3-vl-plus-2025-09-23 | Global | 60 | 100,000 |
qwen3-vl-flash | Global | 12,000 | 10,000,000 |
qwen3-vl-flash | EU | 12,000 | 10,000,000 |
qwen3-vl-flash-2026-01-22 | EU | 60 | 100,000 |
qwen3-vl-flash-2025-10-15 | Global | 600 | 1,000,000 |
qwen3-vl-flash-2025-10-15 | EU | 600 | 1,000,000 |
Hong Kong (China)
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
qwen3-vl-plus | Hong Kong (China) | 6,000 | 1,000,000 |
qwen3-vl-plus-2025-12-19 | Hong Kong (China) | 6,000 | 1,000,000 |
Qwen-Omni
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.5-omni-plus | 60 | 100,000 |
qwen3.5-omni-plus-2026-03-15 | 60 | 100,000 |
qwen3.5-omni-flash | 60 | 100,000 |
qwen3.5-omni-flash-2026-03-15 | 60 | 100,000 |
qwen3-omni-flash | 60 | 100,000 |
qwen3-omni-flash-2025-12-01 | 60 | 100,000 |
qwen3-omni-flash-2025-09-15 | 60 | 100,000 |
qwen-omni-turbo
| 60 | 100,000 |
qwen-omni-turbo-latest | 60 | 100,000 |
qwen-omni-turbo-2025-03-26 (qwen-omni-turbo-0326) | 60 | 100,000 |
qwen-omni-turbo-2025-01-19 (qwen-omni-turbo-0119) | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.5-omni-plus | International | 60 | 100,000 |
qwen3.5-omni-plus-2026-03-15 | International | 60 | 100,000 |
qwen3.5-omni-flash | International | 60 | 100,000 |
qwen3.5-omni-flash-2026-03-15 | International | 60 | 100,000 |
qwen3-omni-flash | International | 60 | 100,000 |
qwen3-omni-flash-2025-12-01 | International | 60 | 100,000 |
qwen3-omni-flash-2025-09-15 | International | 60 | 100,000 |
qwen-omni-turbo | International | 60 | 100,000 |
qwen-omni-turbo-latest | International | 60 | 100,000 |
qwen-omni-turbo-2025-03-26 | International | 60 | 100,000 |
Hong Kong (China)
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
text-embedding-v4 | Hong Kong (China) | 1,800 | 1,200,000 |
Qwen-Omni-Realtime
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.5-omni-plus-realtime | 60 | 100,000 |
qwen3.5-omni-plus-realtime-2026-03-15 | 60 | 100,000 |
qwen3.5-omni-flash-realtime | 60 | 100,000 |
qwen3.5-omni-flash-realtime-2026-03-15 | 60 | 100,000 |
qwen3-omni-flash-realtime | 60 | 100,000 |
qwen3-omni-flash-realtime-2025-12-01 | 60 | 100,000 |
qwen3-omni-flash-realtime-2025-09-15 | 60 | 100,000 |
qwen-omni-turbo-realtime-latest | 60 | 100,000 |
qwen-omni-turbo-realtime-2025-05-08 | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.5-omni-plus-realtime | International | 60 | 100,000 |
qwen3.5-omni-plus-realtime-2026-03-15 | International | 60 | 100,000 |
qwen3.5-omni-flash-realtime | International | 60 | 100,000 |
qwen3.5-omni-flash-realtime-2026-03-15 | International | 60 | 100,000 |
qwen3-omni-flash-realtime | International | 60 | 100,000 |
qwen3-omni-flash-realtime-2025-12-01 | International | 60 | 100,000 |
qwen3-omni-flash-realtime-2025-09-15 | International | 60 | 100,000 |
qwen-omni-turbo-realtime | International | 60 | 10,000 |
qwen-omni-turbo-realtime-latest | International | 60 | 10,000 |
qwen-omni-turbo-realtime-2025-05-08 | International | 60 | 10,000 |
Qwen-OCR (text extraction)
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.5-ocr | 6,000 | 30,000,000 |
qwen-vl-ocr
| 600 | 6,000,000 |
qwen-vl-ocr-latest
| 6,000 | 30,000,000 |
qwen-vl-ocr-2025-11-20 | 6,000 | 30,000,000 |
qwen-vl-ocr-2025-08-28 | 600 | 6,000,000 |
qwen-vl-ocr-2025-04-13 | 600 | 6,000,000 |
qwen-vl-ocr-2024-10-28 | 600 | 6,000,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-vl-ocr | Global | 600 | 6,000,000 |
qwen-vl-ocr-2025-11-20 | Global | 1,200 | 6,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-vl-ocr | International | 600 | 6,000,000 |
qwen-vl-ocr-2025-11-20 | International | 1,200 | 6,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-vl-ocr | Global | 600 | 6,000,000 |
qwen-vl-ocr-2025-11-20 | Global | 1,200 | 6,000,000 |
Qwen Audio (audio understanding)
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-audio-turbo | 120 | 100,000 |
qwen-audio-turbo-latest | 60 | |
Qianwen Math Model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-math-plus | 1,200 | 1,000,000 |
qwen-math-plus-latest | 1,200 | 1,000,000 |
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 | 1200 | 1,000,000 |
Qwen-Coder
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (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 | 60 | 1,000,000 |
qwen3-coder-flash | 5,000 | 5,000,000 |
qwen3-coder-flash-2025-07-28 | 60 | 1,000,000 |
qwen-coder-plus | 1,200 | 1,000,000 |
qwen-coder-turbo | 1,200 | 1,000,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-plus | Global | 2,400 | 2,000,000 |
qwen3-coder-plus-2025-09-23 | Global | 60 | 1,000,000 |
qwen3-coder-plus-2025-07-22 | Global | 60 | 1,000,000 |
qwen3-coder-flash | Global | 1,200 | 1,000,000 |
qwen3-coder-flash-2025-07-28 | Global | 60 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-plus | International | 2,400 | 2,000,000 |
qwen3-coder-plus-2025-09-23 | International | 600 | 1,000,000 |
qwen3-coder-plus-2025-07-22 | International | 60 | 1,000,000 |
qwen3-coder-flash | International | 600 | 5,000,000 |
qwen3-coder-flash-2025-07-28 | International | 600 | 5,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-plus | Global | 5,000 | 5,000,000 |
qwen3-coder-plus-2025-09-23 | Global | 60 | 1,000,000 |
qwen3-coder-plus-2025-07-22 | Global | 60 | 1,000,000 |
qwen3-coder-flash | Global | 5,000 | 5,000,000 |
qwen3-coder-flash-2025-07-28 | Global | 60 | 1,000,000 |
Qwen translation model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-mt-plus | 60 | 25,000 |
qwen-mt-flash | 60 | 35,000 |
qwen-mt-lite | 60 | 100,000 |
qwen-mt-turbo | 60 | 35,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-mt-plus | Global | 60 | 25,000 |
qwen-mt-flash | Global | 60 | 35,000 |
qwen-mt-lite | Global | 60 | 100,000 |
qwen-mt-lite-us | US | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-mt-plus | International | 60 | 100,000 |
qwen-mt-flash | International | 60 | 100,000 |
qwen-mt-lite | International | 60 | 100,000 |
qwen-mt-turbo | International | 60 | 100,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen-mt-plus | Global | 60 | 25,000 |
qwen-mt-flash | Global | 60 | 35,000 |
qwen-mt-lite | Global | 60 | 100,000 |
Qwen data mining model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-doc-turbo | 600 | 3,000,000 |
Qianwen In-depth Research Model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-deep-research | 120 | 1,200,000 |
Tongyi Xiaomì conversation analysis model
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
tongyi-xiaomi-analysis-flash | 600 | 1,000,000 |
tongyi-xiaomi-analysis-pro | 600 | 1,000,000 |
Text generation-Qwen-Open source
Qwen language model open source version
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.8-2.4t-a95b | ||
qwen3.8-27b | ||
qwen3.6-35b-a3b | 600 | 1,000,000 |
qwen3.6-27b | 600 | 1,000,000 |
qwen3.5-397b-a17b | 600 | 1,000,000 |
qwen3.5-122b-a10b | 600 | 1,000,000 |
qwen3.5-27b | 600 | 1,000,000 |
qwen3.5-35b-a3b | 600 | 1,000,000 |
qwen3-next-80b-a3b-thinking | 600 | 1,000,000 |
qwen3-next-80b-a3b-instruct | 600 | 1,000,000 |
qwen3-235b-a22b-thinking-2507 | 600 | 1,000,000 |
qwen3-235b-a22b-instruct-2507 | 600 | 1,000,000 |
qwen3-30b-a3b-thinking-2507 | 600 | 1,000,000 |
qwen3-30b-a3b-instruct-2507 | 600 | 1,000,000 |
qwen3-235b-a22b | 600 | 1,000,000 |
qwen3-30b-a3b | 600 | 1,000,000 |
qwen3-32b | 2400 | 1,000,000 |
qwen3-14b | 600 | 1,000,000 |
qwen3-8b | 600 | 1,000,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.6-35b-a3b | Global | 600 | 1,000,000 |
qwen3.5-397b-a17b | Global | 600 | 1,000,000 |
qwen3.5-122b-a10b | Global | 600 | 1,000,000 |
qwen3.5-27b | Global | 600 | 1,000,000 |
qwen3.5-35b-a3b | Global | 600 | 1,000,000 |
qwen3-next-80b-a3b-thinking | Global | 600 | 1,000,000 |
qwen3-next-80b-a3b-instruct | Global | 600 | 1,000,000 |
qwen3-235b-a22b-thinking-2507 | Global | 600 | 1,000,000 |
qwen3-235b-a22b-instruct-2507 | Global | 600 | 1,000,000 |
qwen3-30b-a3b-thinking-2507 | Global | 600 | 1,000,000 |
qwen3-30b-a3b-instruct-2507 | Global | 600 | 1,000,000 |
qwen3-235b-a22b | Global | 600 | 1,000,000 |
qwen3-32b | Global | 600 | 1,000,000 |
qwen3-30b-a3b | Global | 600 | 1,000,000 |
qwen3-14b | Global | 600 | 1,000,000 |
qwen3-8b | Global | 600 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.8-2.4t-a95b | International | ||
qwen3.8-27b | International | ||
qwen3.6-35b-a3b | International | 600 | 1,000,000 |
qwen3.6-27b | International | 600 | 1,000,000 |
qwen3.5-397b-a17b | International | 600 | 1,000,000 |
qwen3.5-122b-a10b | International | 600 | 1,000,000 |
qwen3.5-27b | International | 600 | 1,000,000 |
qwen3.5-35b-a3b | International | 600 | 5,000,000 |
qwen3-next-80b-a3b-thinking | International | 600 | 1,000,000 |
qwen3-next-80b-a3b-instruct | International | 600 | 1,000,000 |
qwen3-235b-a22b-thinking-2507 | International | 600 | 1,000,000 |
qwen3-235b-a22b-instruct-2507 | International | 600 | 1,000,000 |
qwen3-30b-a3b-thinking-2507 | International | 600 | 5,000,000 |
qwen3-30b-a3b-instruct-2507 | International | 600 | 5,000,000 |
qwen3-235b-a22b | International | 600 | 1,000,000 |
qwen3-32b | International | 600 | 1,000,000 |
qwen3-30b-a3b | International | 600 | 1,000,000 |
qwen3-14b | International | 600 | 1,000,000 |
qwen3-8b | International | 600 | 1,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3.6-35b-a3b | Global | 600 | 1,000,000 |
qwen3.5-397b-a17b | Global | 600 | 1,000,000 |
qwen3.5-122b-a10b | Global | 600 | 1,000,000 |
qwen3.5-27b | Global | 600 | 1,000,000 |
qwen3.5-35b-a3b | Global | 600 | 1,000,000 |
qwen3-next-80b-a3b-thinking | Global | 600 | 1,000,000 |
qwen3-next-80b-a3b-instruct | Global | 600 | 1,000,000 |
qwen3-235b-a22b-thinking-2507 | Global | 600 | 1,000,000 |
qwen3-235b-a22b-instruct-2507 | Global | 600 | 1,000,000 |
qwen3-30b-a3b-thinking-2507 | Global | 600 | 1,000,000 |
qwen3-30b-a3b-instruct-2507 | Global | 600 | 1,000,000 |
qwen3-235b-a22b | Global | 600 | 1,000,000 |
qwen3-32b | Global | 2,400 | 1,000,000 |
qwen3-30b-a3b | Global | 600 | 1,000,000 |
qwen3-14b | Global | 600 | 1,000,000 |
qwen3-8b | Global | 600 | 1,000,000 |
Qwen-VL
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3-vl-32b-thinking | 600 | 1,000,000 |
qwen3-vl-32b-instruct | 600 | 1,000,000 |
qwen3-vl-30b-a3b-thinking | 600 | 1,000,000 |
qwen3-vl-30b-a3b-instruct | 600 | 1,000,000 |
qwen3-vl-8b-thinking | 600 | 1,000,000 |
qwen3-vl-8b-instruct | 600 | 1,000,000 |
qwen3-vl-235b-a22b-thinking | 60 | 100,000 |
qwen3-vl-235b-a22b-instruct | 60 | 100,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-235b-a22b-thinking | Global | 60 | 100,000 |
qwen3-vl-235b-a22b-instruct | Global | 60 | 100,000 |
qwen3-vl-32b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-32b-instruct | Global | 600 | 1,000,000 |
qwen3-vl-30b-a3b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-30b-a3b-instruct | Global | 600 | 1,000,000 |
qwen3-vl-8b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-8b-instruct | Global | 600 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-32b-thinking | International | 60 | 100,000 |
qwen3-vl-32b-instruct | International | 60 | 100,000 |
qwen3-vl-30b-a3b-thinking | International | 60 | 100,000 |
qwen3-vl-30b-a3b-instruct | International | 60 | 100,000 |
qwen3-vl-8b-thinking | International | 60 | 100,000 |
qwen3-vl-8b-instruct | International | 60 | 100,000 |
qwen3-vl-235b-a22b-thinking | International | 60 | 100,000 |
qwen3-vl-235b-a22b-instruct | International | 60 | 100,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-vl-235b-a22b-thinking | Global | 60 | 100,000 |
qwen3-vl-235b-a22b-instruct | Global | 60 | 100,000 |
qwen3-vl-32b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-32b-instruct | Global | 600 | 1,000,000 |
qwen3-vl-30b-a3b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-30b-a3b-instruct | Global | 600 | 1,000,000 |
qwen3-vl-8b-thinking | Global | 600 | 1,000,000 |
qwen3-vl-8b-instruct | Global | 600 | 1,000,000 |
Qwen-Omni
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen2.5-omni-7b | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen2.5-omni-7b | International | 60 | 100,000 |
Qwen3-Omni-Captioner
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3-omni-30b-a3b-captioner | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-omni-30b-a3b-captioner | International | 60 | 100,000 |
Qwen-Coder
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3-coder-next | 600 | 1,000,000 |
qwen3-coder-480b-a35b-instruct | 600 | 1,000,000 |
qwen3-coder-30b-a3b-instruct | 600 | 1,000,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-480b-a35b-instruct | Global | 600 | 1,000,000 |
qwen3-coder-30b-a3b-instruct | Global | 600 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-next | International | 600 | 1,000,000 |
qwen3-coder-480b-a35b-instruct | International | 600 | 1,000,000 |
qwen3-coder-30b-a3b-instruct | International | 600 | 1,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-coder-480b-a35b-instruct | Global | 600 | 1,000,000 |
qwen3-coder-30b-a3b-instruct | Global | 600 | 1,000,000 |
qwen3-coder-next | EU | 600 | 1,000,000 |
Text generation-Third-party models
DeepSeek
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
deepseek-v4-pro | 15,000 | 1,200,000 |
deepseek-v4-pro-0813 | ||
deepseek-v4-flash-0731 | 15,000 | 1,200,000 |
deepseek-v4-flash | 15,000 | 1,200,000 |
deepseek-v3.2
| 15,000 | 1,000,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
| 15,000 | 1,200,000 |
deepseek-r1-distill-qwen-7b | 15,000 | 1,200,000 |
deepseek-r1-distill-qwen-14b | 15,000 | 1,200,000 |
deepseek-r1-distill-qwen-32b | 15,000 | 1,200,000 |
deepseek-r1-distill-qwen-1.5b | 60 | 100,000 |
deepseek-r1-distill-llama-8b | 60 | 100,000 |
deepseek-r1-distill-llama-70b | 60 | 100,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
deepseek-v4-pro | Global | 15,000 | 1,200,000 |
deepseek-v4-pro-0813 | Global | 15,000 | 1,200,000 |
deepseek-v4-pro-us | US | 10,000 | 1,200,000 |
deepseek-v4-flash-0731 | Global | 15,000 | 1,200,000 |
deepseek-v4-flash | Global | 15,000 | 1,200,000 |
deepseek-v4-flash-us | US | 10,000 | 1,200,000 |
deepseek-v4-flash-0731-us | US | 15,000 | 1,200,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
deepseek-v4-pro | International | 10,000 | 1,200,000 |
deepseek-v4-pro-0813 | International | ||
deepseek-v4-flash-0731 | International | 15,000 | 1,200,000 |
deepseek-v4-flash | International | 10,000 | 1,200,000 |
deepseek-v3.2 | International | 10,000 | 1,200,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
deepseek-v4-pro | Global | 15,000 | 1,200,000 |
deepseek-v4-pro-0813 | Global | 15,000 | 1,200,000 |
deepseek-v4-flash-0731 | Global | 15,000 | 1,200,000 |
deepseek-v4-flash | Global | 15,000 | 1,200,000 |
Japan (Tokyo)
| Model name | Service deployment scope | Rate limit conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limits. The service may also enforce per-second limits at RPS (RPM/60) and TPS (TPM/60) | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
deepseek-v4-pro | Japan | 10,000 | 1,200,000 |
deepseek-v4-pro-0813 | Japan | 15,000 | 1,200,000 |
deepseek-v4-flash | Japan | 10,000 | 1,200,000 |
deepseek-v4-flash-0731 | Japan | 15,000 | 1,200,000 |
deepseek-v4-pro | Global | 10,000 | 1,200,000 |
deepseek-v4-pro-0813 | Global | 15,000 | 1,200,000 |
deepseek-v4-flash-0731 | Global | 15,000 | 1,200,000 |
deepseek-v4-flash | Global | 10,000 | 1,200,000 |
Hong Kong (China)
Tab 正文
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
deepseek-v4-flash-0731 | Hong Kong (China) | 15,000 | 1,200,000 |
deepseek-v4-pro-0813 | Hong Kong (China) | 15,000 | 1,200,000 |
DeepSeek-SiliconFlow direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
siliconflow/deepseek-v3.2 | 500 | 500,000 |
siliconflow/deepseek-v3.1-terminus | 500 | 500,000 |
siliconflow/deepseek-r1-0528 | 500 | 500,000 |
siliconflow/deepseek-v3-0324 | 500 | 500,000 |
DeepSeek-Kuaishou Vanchin direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
vanchin/deepseek-v3.2-think | 30 | 600,000 |
vanchin/deepseek-v3.1-terminus | 500 | 1,000,000 |
vanchin/deepseek-r1 | 500 | 1,000,000 |
vanchin/deepseek-v3 | 500 | 1,000,000 |
vanchin/deepseek-ocr | 500 | 1,000,000 |
Kimi
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
kimi-k3 | ||
kimi-k2.7-code | 500 | 1,000,000 |
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 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
kimi-k3 | Global | 15,000 | 1,200,000 |
kimi-k3 | International | 10,000 | 1,200,000 |
kimi-k2.7-code | Global | 500 | 1,000,000 |
kimi-k2.5 | Global | 500 | 1,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
kimi-k3 | Global | 15,000 | 1,200,000 |
kimi-k2.7-code | Global | 500 | 1,000,000 |
kimi-k2.5 | Global | 500 | 1,000,000 |
Japan (Tokyo)
| Model name | Service deployment scope | Rate limit conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limits. The service may also enforce per-second limits at RPS (RPM/60) and TPS (TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
kimi-k3 | Global | 15,000 | 1,200,000 |
kimi-k2.7-code | Global | 500 | 1,000,000 |
kimi-k2.5 | Global | 500 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
kimi-k3 | International | ||
kimi-k2.7-code | International | 500 | 1,000,000 |
Hong Kong (China)
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
kimi-k3 | Global | 15,000 | 1,200,000 |
kimi-k2.7-code | Global | 500 | 1,000,000 |
Kimi-Moonshot AI direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
kimi/kimi-k3 | 500
| 3,000,000
|
kimi/kimi-k2.7-code | ||
kimi/kimi-k2.6 | ||
kimi/kimi-k2.5 | ||
GLM
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
glm-5.2 | 500 | 2,000,000 |
glm-5.1 | 500 | 1,000,000 |
glm-5 | 500 | 1,000,000 |
glm-4.7 | 500 | 1,000,000 |
glm-4.6 | 60 | 1,000,000 |
glm-4.5 | 60 | 1,000,000 |
glm-4.5-air | 60 | 1,000,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
glm-5.2 | Global | 500 | 1,000,000 |
glm-5.2-us | US | 500 | 1,000,000 |
glm-5.1 | Global | 500 | 1,000,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
glm-5.2 | Global | 500 | 1,000,000 |
glm-5.1 | Global | 500 | 1,000,000 |
Japan (Tokyo)
| Model name | Service deployment scope | Rate limit conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limits. The service may also enforce per-second limits at RPS (RPM/60) and TPS (TPM/60) | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
glm-5.1 | Global | 500 | 1,000,000 |
Singapore
| Model name | Service deployment scope | Rate limit conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limits. The service may also enforce per-second limits at RPS (RPM/60) and TPS (TPM/60) | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
glm-5.2 | International | 500 | 1,000,000 |
glm-5.1 | International | 500 | 1,000,000 |
Hong Kong (China)
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens. | ||
glm-5.2 | Global | 500 | 1,000,000 |
GLM-Zhipu AI direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | |
ZHIPU/GLM-5.3 | 200 | 3,000,000 |
ZHIPU/GLM-5.3-Flash | 200 | 3,000,000 |
ZHIPU/GLM-5.2 | 200 | 3,000,000 |
ZHIPU/GLM-5.1 | 200 | 3,000,000 |
ZHIPU/GLM-5 | 200 | 3,000,000 |
MiniMax
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
MiniMax-M2.5 | 500 | 1,000,000 |
MiniMax-M2.1 | 500 | 1,000,000 |
MiniMax-Xiyu Tech direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
MiniMax/MiniMax-M3 | 500 | 20,000,000 |
MiniMax/MiniMax-M2.7 | 500 | 20,000,000 |
MiniMax/MiniMax-M2.5 | 500 | 20,000,000 |
MiniMax/MiniMax-M2.1 | 500 | 20,000,000 |
MiMo-Xiaomi direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
xiaomi/mimo-v2.5-pro | 100 | 10,000,000 |
Stepfun-StepFun direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
stepfun/step-3.7-flash | 500 | 20,000,000 |
Unisound direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
unisound/unisound-u2 | 300 | 3,000,000 |
Image generation
Qwen-Image
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Task submission API call limit | Number of concurrent processing tasks (concurrency) | |
qwen-image-3.0-pro | 5 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-3.0 | 20 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-2.0-pro | 2 requests/minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-06-22 | 2 requests/minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-04-22 | 2 requests/minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-03-03 | 2 requests/minute | No limit for sync APIs |
qwen-image-2.0 | 2 requests/second | No limit for sync APIs |
qwen-image-2.0-2026-03-03 | 2 requests/second | No limit for sync APIs |
qwen-image-max | 2 requests/minute | No limit for sync APIs |
qwen-image-max-2025-12-30 | 2 requests/minute | No limit for sync APIs |
qwen-image-plus | 2 requests/second | No limit for sync APIs / 2 for async APIs |
qwen-image-plus-2026-01-09 | 2 requests/second | No limit for sync APIs |
qwen-image | 2 requests/second | No limit for sync APIs / 2 for async APIs |
qwen-image-edit-max | 2 requests/minute | No limit for sync APIs |
qwen-image-edit-max-2026-01-16 | 2 requests/minute | No limit for sync APIs |
qwen-image-edit-plus | 2 requests/second | No limit for sync APIs |
qwen-image-edit-plus-2025-12-15 | 2 requests/second | No limit for sync APIs |
qwen-image-edit-plus-2025-10-30 | 2 requests/second | No limit for sync APIs |
qwen-image-edit | Twice per second | No limit for sync APIs |
qwen-mt-image-2.0 | 60 requests/minute | 2 |
qwen-mt-image | 1 request/second | 2 |
Singapore
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Task submission API call limit | Number of concurrent processing tasks (concurrency) | ||
qwen-image-3.0-pro | International | 5 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-3.0 | International | 20 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-2.0-pro | International | 2 times per minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-06-22 | International | 2 times per minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-04-22 | International | 2 times per minute | No limit for sync APIs |
qwen-image-2.0-pro-2026-03-03 | International | 2 requests/minute | No limit for sync APIs |
qwen-image-2.0 | International | 2 requests/second | No limit for sync APIs |
qwen-image-2.0-2026-03-03 | International | 2 requests/second | No limit for sync APIs |
qwen-image-max | International | 2 requests/minute | No limit for sync APIs |
qwen-image-max-2025-12-30 | International | Twice per minute | No limit for sync APIs |
qwen-image-plus | International | 2 requests/second | No limit for sync APIs / 2 for async APIs |
qwen-image-plus-2026-01-09 | International | 2 requests/second | No limit for sync APIs |
qwen-image | International | 2 requests/second | No limit for sync APIs / 2 for async APIs |
qwen-image-edit-max | International | 2 times per minute | No limit for sync APIs |
qwen-image-edit-max-2026-01-16 | International | 2 requests/minute | No limit for sync APIs |
qwen-image-edit-plus | International | 2 requests/second | No limit for sync APIs |
qwen-image-edit-plus-2025-12-15 | International | 2 requests/second | No limit for sync APIs |
qwen-image-edit-plus-2025-10-30 | International | 2 times per second | No limit for sync APIs |
qwen-image-edit | International | 2 requests/second | No limit for sync APIs |
qwen-mt-image-2.0 | International | 60 requests/minute | 2 |
Germany (Frankfurt)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Task submission API call limit | Number of concurrent processing tasks (concurrency) | ||
qwen-image-3.0-pro | Global | 5 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-3.0 | Global | 20 request/minute | No limit for sync APIs / 10 for async APIs |
Japan (Tokyo)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Task submission API call limit | Number of concurrent processing tasks (concurrency) | ||
qwen-image-3.0-pro | Global | 5 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-3.0 | Global | 20 request/minute | No limit for sync APIs / 10 for async APIs |
Hong Kong (China)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Task submission API call limit | Number of concurrent processing tasks (concurrency) | ||
qwen-image-3.0-pro | Global | 5 request/minute | No limit for sync APIs / 10 for async APIs |
qwen-image-3.0 | Global | 20 request/minute | No limit for sync APIs / 10 for async APIs |
Text-to-image-Z-Image
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
z-image-turbo | 2 | No limit for sync APIs |
Singapore
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
z-image-turbo | International | 2 | No limit for sync APIs |
Wanxiang
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
wan2.7-image-pro | 5 | 5 |
wan2.7-image | 5 | 5 |
wan2.6-image | 5 | 5 |
wan2.6-t2i | 1 | 5 |
wan2.5-t2i-preview | 5 | 5 |
wan2.2-t2i-plus | 2 | 2 |
wan2.2-t2i-flash | 2 | 2 |
wanx2.1-t2i-plus | 2 | 2 |
wanx2.1-t2i-turbo | 2 | 2 |
wanx2.0-t2i-turbo | 2 | 2 |
wan2.5-i2i-preview | 5 | 5 |
wanx2.1-imageedit | 2 | 2 |
wanx-v1 | 2 | 1 |
wanx-x-painting | 2 | 1 |
wanx-sketch-to-image-lite | 2 | 1 |
US (Virginia)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
wan2.6-t2i | Global | 5 | 5 |
wan2.6-image | Global | 5 | 5 |
Singapore
Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent tasks | ||
wan2.7-image-pro | International | 5 | 5 |
wan2.7-image | International | 5 | 5 |
wan2.6-image | International | 5 | 5 |
wan2.6-t2i | International | 5 | 5 |
wan2.5-t2i-preview | International | 5 | 5 |
wan2.2-t2i-flash | International | 2 | 2 |
wan2.2-t2i-plus | International | 2 | 2 |
wan2.1-t2i-turbo | International | 2 | 2 |
wan2.1-t2i-plus | International | 2 | 2 |
wan2.5-i2i-preview | International | 5 | 5 |
Germany (Frankfurt)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
wan2.6-t2i | Global | 1 | 5 |
wan2.6-image | Global | 5 | 5 |
Image Editing and Generation
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
shoemodel-v1 | 2 | 1 |
wanx-virtualmodel | 2 | 1 |
wanx-style-repaint-v1 | 2 | 2 |
wanx-poster-generation-v1 | 2 | 1 |
virtualmodel-v2 | 2 | 1 |
wanx-background-generation-v2 | 2 | 1 |
image-instance-segmentation | 2 | 1 |
image-erase-completion | 2 | 1 |
image-out-painting | 2 | 10 |
FaceChain
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent tasks | |
facechain-facedetect | 5 | No limit for sync APIs |
facechain-finetune | 1 | 1 |
facechain-generation | 2 | 1 |
WordArt
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent tasks | |
wordart-texture | 2 | 1 |
wordart-semantic | 2 | 1 |
OutfitAnyone
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent tasks | |
aitryon | 10 | 5 |
aitryon-plus | 10 | 5 |
aitryon-parsing-v1 | 10 | No limit for sync APIs |
aitryon-refiner | 10 | 5 |
Image generation-Third-party models
Kling series
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
kling/kling-v3-omni-image-generation | 5 | 10
|
kling/kling-v3-image-generation | ||
Vidu series
China (Beijing)
| Model name | Rate limiting conditions (throttling is triggered when any value is exceeded) | |
|---|---|---|
| RPM (requests per minute) | Number of concurrent tasks | |
vidu/vidu-image_reference2image | 300 | 5
|
vidu/vidu-image-pro_reference2image | ||
vidu/vidu-image-lite_reference2image | ||
vidu/viduq3-fast_reference2image | ||
vidu/viduq2-pro_reference2image | ||
vidu/viduq2-fast_reference2image | ||
Music generation
China (Beijing)
Model name | Requests per minute (RPM) |
|---|---|
fun-music-preview | 180 |
fun-music-v1 | 180 |
Voice chat
Realtime voice chat
China (Beijing)
| Model name | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen-audio-3.0-realtime-plus | 60 | 100,000 |
qwen-audio-3.0-realtime-flash | 60 | 100,000 |
Singapore
| Model name | Service deployment scope | Rate limiting conditions (triggered if any value is exceeded)The following limits are per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
qwen-audio-3.0-realtime-plus | International | 60 | 100,000 |
qwen-audio-3.0-realtime-flash | International | 60 | 100,000 |
Speech synthesis (text-to-speech)
Qwen-Audio-TTS
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
qwen-audio-3.0-tts-plus | 3 |
qwen-audio-3.0-tts-flash | 3 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
qwen-audio-3.0-tts-plus | International | 3 |
qwen-audio-3.0-tts-flash | International | 3 |
Qwen-TTS
China (Beijing)
Qwen3-TTS-Instruct-Flash
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-instruct-flash | 180 |
qwen3-tts-instruct-flash-2026-01-26 | 180 |
Qwen3-TTS-VD
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-vd-2026-01-26 | 180 |
Qwen3-TTS-VC
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-vc-2026-01-22 | 180 |
Qwen3-TTS-Flash
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-flash | 180 |
qwen3-tts-flash-2025-11-27 | 180 |
qwen3-tts-flash-2025-09-18 | 10 |
Qwen-TTS
| Model name | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | |
qwen-tts | 10 | 100,000 |
qwen-tts-latest | ||
qwen-tts-2025-05-22 | ||
qwen-tts-2025-04-10 | ||
Singapore
Qwen3-TTS-Instruct-Flash
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-instruct-flash | International | 180 |
qwen3-tts-instruct-flash-2026-01-26 | International | 180 |
Qwen3-TTS-VD
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-vd-2026-01-26 | International | 180 |
Qwen3-TTS-VC
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-vc-2026-01-22 | International | 180 |
Qwen3-TTS-Flash
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-flash | International | 180 |
qwen3-tts-flash-2025-11-27 | International | 180 |
qwen3-tts-flash-2025-09-18 | International | 10 |
Qwen-TTS-Realtime
China (Beijing)
Qwen3-TTS-Instruct-Flash-Realtime
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-instruct-flash-realtime | 180 |
qwen3-tts-instruct-flash-realtime-2026-01-22 | 180 |
Qwen3-TTS-VD-Realtime
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-vd-realtime-2026-01-15 | 180 |
qwen3-tts-vd-realtime-2025-12-16 |
Qwen3-TTS-VC-Realtime
Model name | Requests per minute (RPM) |
|---|---|
qwen3-tts-vc-realtime-2026-01-15 | 180 |
qwen3-tts-vc-realtime-2025-11-27 |
Qwen3-TTS-Flash-Realtime
Model name | Requests per minute (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 name | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | |
qwen-tts-realtime | 10 | 100,000 |
qwen-tts-realtime-latest | ||
qwen-tts-realtime-2025-07-15 | ||
Singapore
Qwen3-TTS-Instruct-Flash-Realtime
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-instruct-flash-realtime | International | 180 |
qwen3-tts-instruct-flash-realtime-2026-01-22 | International | 180 |
Qwen3-TTS-VD-Realtime
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-vd-realtime-2026-01-15 | International | 180 |
qwen3-tts-vd-realtime-2025-12-16 | International |
Qwen3-TTS-VC-Realtime
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-vc-realtime-2026-01-15 | International | 180 |
qwen3-tts-vc-realtime-2025-11-27 | International |
Qwen3-TTS-Flash-Realtime
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-tts-flash-realtime | International | 180 |
qwen3-tts-flash-realtime-2025-11-27 | International | 180 |
qwen3-tts-flash-realtime-2025-09-18 | International | 10 |
Qwen-TTS voice cloning
China (Beijing)
Model name | Requests per minute (RPM) |
|---|---|
qwen-voice-enrollment | 180 |
Singapore
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen-voice-enrollment | International | 180 |
Qwen-TTS voice design
China (Beijing)
Model name | Requests per minute (RPM) |
|---|---|
qwen-voice-design | 180 |
Singapore
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen-voice-design | International | 180 |
CosyVoice
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
cosyvoice-v3.5-plus | 3 |
cosyvoice-v3.5-flash | |
cosyvoice-v3-plus | |
cosyvoice-v3-flash | |
cosyvoice-v2 | |
cosyvoice-v1 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
cosyvoice-v3-plus | International | 3 |
cosyvoice-v3-flash | International |
Qwen-Audio-TTS/CosyVoice voice cloning/design
Qwen-Audio-TTS/CosyVoice voice cloning/design models share a single model and a single rate limit quota.
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
voice-enrollment | 10 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
voice-enrollment | International | 10 |
Sambert
China (Beijing)
Model service | Requests per second (RPS) |
|---|---|
Sambert series models | 20 |
Speech synthesis (text-to-speech)-Third-party models
MiniMax-Xiyu Tech direct supply
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
MiniMax/speech-2.8-hd | 20 | 20,000 |
MiniMax/speech-02-hd | 20 | 20,000 |
MiniMax/speech-2.8-turbo | 20 | 20,000 |
MiniMax/speech-02-turbo | 20 | 20,000 |
Speech recognition (speech-to-text) and translation (speech to specified language text)
Qwen3-LiveTranslate-Flash
China (Beijing)
| Model name | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | |
qwen3-livetranslate-flash | 100 | 100,000 |
qwen3-livetranslate-flash-2025-12-01 | ||
Singapore
| Model name | Service deployment scope | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
qwen3-livetranslate-flash | International | 100 | 100,000 |
qwen3-livetranslate-flash-2025-12-01 | International | ||
Qwen-LiveTranslate-Flash-Realtime
China (Beijing)
| Model name | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | |
qwen3.5-livetranslate-flash-realtime | 10 | 100,000 |
qwen3.5-livetranslate-flash-realtime-2026-05-19 | ||
qwen3-livetranslate-flash-realtime | ||
qwen3-livetranslate-flash-realtime-2025-09-22 | ||
Singapore
| Model name | Service deployment scope | Rate limiting conditions (rate limiting is triggered when any value is exceeded)The following are per-minute rate limiting conditions. The service may also enforce RPS (RPM/60) and TPS (TPM/60) limits | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens | ||
qwen3.5-livetranslate-flash-realtime | International | 10 | 100,000 |
qwen3.5-livetranslate-flash-realtime-2026-05-19 | International | ||
qwen3-livetranslate-flash-realtime | International | ||
qwen3-livetranslate-flash-realtime-2025-09-22 | International | ||
Qwen-Audio-3.0-ASR-Flash-Streaming
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
qwen-audio-3.0-asr-flash-streaming | 20 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
qwen-audio-3.0-asr-flash-streaming | International | 20 |
Qwen-Audio-3.0-ASR-Flash-Filetrans
China (Beijing)
Model name | Requests per minute (RPM) |
|---|---|
qwen-audio-3.0-asr-flash-filetrans | 600 |
Singapore
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen-audio-3.0-asr-flash-filetrans | International | 600 |
Qwen-Audio-3.0-ASR-Flash
China (Beijing)
Model name | Requests per minute (RPM) |
|---|---|
qwen-audio-3.0-asr-flash | 600 |
Singapore
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen-audio-3.0-asr-flash | International | 600 |
Qwen-ASR
China (Beijing)
Qwen3-ASR-Flash-Filetrans
Model name | Requests per minute (RPM) |
|---|---|
qwen3-asr-flash-filetrans | 100 |
qwen3-asr-flash-filetrans-2025-11-17 |
Qwen3-ASR-Flash
Model name | Requests per minute (RPM) |
|---|---|
qwen3-asr-flash | 100 |
qwen3-asr-flash-2026-02-10 | |
qwen3-asr-flash-2025-09-08 |
Singapore
Qwen3-ASR-Flash-Filetrans
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-asr-flash-filetrans | International | 100 |
qwen3-asr-flash-filetrans-2025-11-17 | International |
Qwen3-ASR-Flash
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-asr-flash | International | 100 |
qwen3-asr-flash-2026-02-10 | International | |
qwen3-asr-flash-2025-09-08 | International |
US (Virginia)
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
qwen3-asr-flash-us | United States | 100 |
qwen3-asr-flash-2025-09-08-us | United States |
Qwen-ASR-Realtime
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
qwen3-asr-flash-realtime | 20 |
qwen3-asr-flash-realtime-2026-02-10 | |
qwen3-asr-flash-realtime-2025-10-27 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
qwen3-asr-flash-realtime | International | 20 |
qwen3-asr-flash-realtime-2026-02-10 | International | |
qwen3-asr-flash-realtime-2025-10-27 | International |
Fun-ASR
China (Beijing)
Model name | Requests per minute (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-flash-2026-06-15 |
Singapore
Model name | Service deployment scope | Requests per minute (RPM) |
|---|---|---|
fun-asr | International | 600 |
fun-asr-2025-11-07 | International | 600 |
fun-asr-2025-08-25 | International | 600 |
fun-asr-mtl | International | 100 |
fun-asr-mtl-2025-08-25 | International | 100 |
fun-asr-flash-2026-06-15 | International | 600 |
Fun-ASR-Realtime
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
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 |
Singapore
Model name | Service deployment scope | Requests per second (RPS) |
|---|---|---|
fun-asr-realtime | International | 20 |
fun-asr-realtime-2025-11-07 | International |
Paraformer
China (Beijing)
Model name | Requests per second (RPS) |
|---|---|
paraformer-realtime-v2 | 20 |
paraformer-realtime-v1 | |
paraformer-realtime-8k-v2 | |
paraformer-realtime-8k-v1 |
Model name | Requests per minute (RPM) |
|---|---|
paraformer-v2 | 1,200 |
| Model name | Requests per minute (RPM) | Tokens per minute (TPM)Including input and output tokens |
|---|---|---|
paraformer-v1 | 600 | 6,000,000 |
paraformer-mtl-v1 | 600 | 6,000,000 |
Model name | Requests per second (RPS) | Concurrent tasks (concurrency) |
|---|---|---|
paraformer-8k-v2 | 20 | 100 |
paraformer-8k-v1 | 10 | 500 |
Video generation
HappyHorse series
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
happyhorse-1.1-t2v | 5 | 5 |
happyhorse-1.1-i2v | 5 | 5 |
happyhorse-1.1-r2v | 5 | 5 |
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 |
US (Virginia)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
happyhorse-1.1-t2v | Global | 5 | 5 |
happyhorse-1.1-i2v | Global | 5 | 5 |
happyhorse-1.1-r2v | Global | 5 | 5 |
happyhorse-1.0-t2v | Global | 5 | 5 |
happyhorse-1.0-i2v | Global | 5 | 5 |
happyhorse-1.0-r2v | Global | 5 | 5 |
happyhorse-1.0-video-edit | Global | 5 | 5 |
Singapore
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
happyhorse-1.1-t2v | International | 5 | 5 |
happyhorse-1.1-i2v | International | 5 | 5 |
happyhorse-1.1-r2v | International | 5 | 5 |
happyhorse-1.0-t2v | International | 5 | 5 |
happyhorse-1.0-i2v | International | 5 | 5 |
happyhorse-1.0-r2v | International | 5 | 5 |
happyhorse-1.0-video-edit | International | 5 | 5 |
Germany (Frankfurt)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
happyhorse-1.1-t2v | Global | 5 | 5 |
happyhorse-1.1-i2v | Global | 5 | 5 |
happyhorse-1.1-r2v | Global | 5 | 5 |
happyhorse-1.0-t2v | Global | 5 | 5 |
happyhorse-1.0-i2v | Global | 5 | 5 |
happyhorse-1.0-r2v | Global | 5 | 5 |
happyhorse-1.0-video-edit | Global | 5 | 5 |
Japan (Tokyo)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
happyhorse-1.1-t2v | Global | 5 | 5 |
happyhorse-1.1-i2v | Global | 5 | 5 |
happyhorse-1.1-r2v | Global | 5 | 5 |
happyhorse-1.0-video-edit | Global | 5 | 5 |
China (Hong Kong)
Model name | Service region | Rate limiting conditions (triggered when any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks | ||
wan3.0-video-prime | Global | 5 | 5 |
wan3.0-video | Global | 5 | 5 |
Wanxiang series
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
wan3.0-video-prime | 5 | 5 |
wan3.0-video | 5 | 5 |
wan2.7-r2v-2026-06-12 | 5 | 5 |
wan2.7-t2v-2026-06-12 | 5 | 5 |
wan2.7-t2v-2026-04-25 | 5 | 5 |
wan2.7-t2v | 5 | 5 |
wan2.6-t2v | 5 | 5 |
wan2.5-t2v-preview | 5 | 5 |
wan2.2-t2v-plus | 2 | 2 |
wanx2.1-t2v-turbo | 2 | 2 |
wanx2.1-t2v-plus | 2 | 2 |
wan2.7-i2v-2026-04-25 | 5 | 5 |
wan2.7-i2v | 5 | 5 |
wan2.6-i2v-flash | 5 | 5 |
wan2.6-i2v | 5 | 5 |
wan2.5-i2v-preview | 5 | 5 |
wan2.2-i2v-flash | 2 | 2 |
wan2.2-i2v-plus | 2 | 2 |
wanx2.1-i2v-turbo | 2 | 2 |
wanx2.1-i2v-plus | 2 | 2 |
wan2.2-kf2v-flash | 2 | 2 |
wanx2.1-kf2v-plus | 2 | 2 |
wanx2.1-vace-plus | 2 | 2 |
wan2.7-videoedit | 5 | 5 |
wan2.7-r2v | 5 | 5 |
wan2.6-r2v-flash | 5 | 5 |
wan2.6-r2v | 5 | 5 |
wan2.2-s2v-detect | 5 | No limit for sync APIs |
wan2.2-s2v | 5 | 1 |
wan2.2-animate-move | 5 | 1 |
wan2.2-animate-mix | 5 | 1 |
US (Virginia)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
wan3.0-video-prime | Global | 5 | 5 |
wan3.0-video | Global | 5 | 5 |
wan2.6-t2v | Global | 5 | 5 |
wan2.6-i2v | Global | 5 | 5 |
wan2.6-r2v | Global | 5 | 5 |
wan2.6-t2v-us | US | 5 | 5 |
wan2.6-i2v-us | US | 5 | 5 |
Singapore
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
wan3.0-video-prime | International | 5 | 5 |
wan3.0-video | International | 5 | 5 |
wan2.7-r2v-2026-06-12 | Global | 5 | 5 |
wan2.7-t2v-2026-06-12 | International | 5 | 5 |
wan2.7-t2v-2026-04-25 | International | 5 | 5 |
wan2.7-t2v | International | 5 | 5 |
wan2.6-t2v | International | 5 | 5 |
wan2.5-t2v-preview | International | 5 | 5 |
wan2.2-t2v-plus | International | 2 | 2 |
wan2.1-t2v-turbo | International | 2 | 2 |
wan2.1-t2v-plus | International | 2 | 2 |
wan2.7-i2v-2026-04-25 | International | 5 | 5 |
wan2.7-i2v | International | 5 | 5 |
wan2.6-i2v-flash | International | 5 | 5 |
wan2.6-i2v | International | 5 | 5 |
wan2.5-i2v-preview | International | 5 | 5 |
wan2.2-i2v-plus | International | 2 | 2 |
wan2.1-i2v-turbo | International | 2 | 2 |
wan2.1-i2v-plus | International | 2 | 2 |
wan2.1-kf2v-plus | International | 1 | 2 |
wan2.1-vace-plus | International | 2 | 2 |
wan2.7-videoedit | International | 5 | 5 |
wan2.7-r2v | International | 5 | 5 |
wan2.6-r2v-flash | International | 5 | 5 |
wan2.6-r2v | International | 5 | 5 |
wan2.2-animate-move | International | 5 | 1 |
wan2.2-animate-mix | International | 5 | 1 |
Germany (Frankfurt)
Model name | Service deployment scope | Rate limits (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | ||
wan3.0-video-prime | Global | 5 | 5 |
wan3.0-video | Global | 5 | 5 |
wan2.6-t2v | Global | 5 | 5 |
wan2.6-i2v | Global | 5 | 5 |
wan2.6-r2v | Global | 5 | 5 |
US (Virginia)
Model name | Service region | Rate limiting conditions (triggered when any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks | ||
Japan (Tokyo)
Model name | Service region | Rate limiting conditions (triggered when any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent processing tasks | ||
wan3.0-video-prime | Global | 5 | 5 |
wan3.0-video | Global | 5 | 5 |
AnimateAnyone
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
animate-anyone-detect-gen2 | 5 | No limit for sync APIs |
animate-anyone-template-gen2 | 5 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
animate-anyone-gen2 | 5 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
animate-anyone-detect | 5 | 1 computing unit supports 2 concurrent tasks |
animate-anyone | 5 | 1 computing unit supports 1 concurrent task |
EMO
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
emo-detect-v1 | 5 | No limit for sync APIs |
emo-v1 | 5 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
LivePortrait
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
liveportrait-detect | 5 | No limit for sync APIs |
liveportrait | 5 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
VideoRetalk
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
videoretalk | 1 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
Emoji sticker packs
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
emoji-detect-v1 | 1 | No limit for sync APIs |
emoji-v1 | 1 | 1 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
Video Style Transfer
China (Beijing)
Model name | Requests per second (RPS) | Number of concurrent processing tasks |
|---|---|---|
video-style-transform | 20 | 2 At any given time, only one job is in the running state. Other jobs in the queue are in a waiting state. |
Video generation-Third-party models
Aishell series
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Task submission API RPM limit | Number of concurrent processing tasks (concurrency) | |
pixverse/pixverse-lipsync | 300 | 5
|
pixverse/pixverse-motioncontrol | 300 | |
pixverse/pixverse-upscale | 300 | |
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
pixverse/pixverse-c1-t2v | 5 | 5
|
pixverse/pixverse-c1-it2v | ||
pixverse/pixverse-c1-kf2v | ||
pixverse/pixverse-c1-r2v | ||
pixverse/pixverse-v6-r2v-omni | 5 | 5
|
pixverse/pixverse-v6-t2v | ||
pixverse/pixverse-v6-it2v | ||
pixverse/pixverse-v6-kf2v | ||
pixverse/pixverse-v6-r2v | ||
pixverse/pixverse-v5.6-t2v | 5 | 5
|
pixverse/pixverse-v5.6-it2v | ||
pixverse/pixverse-v5.6-kf2v | ||
pixverse/pixverse-v5.6-r2v | ||
Kling series
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
kling/kling-v3-omni-video-generation | 5 | 10
|
kling/kling-v3-turbo-video-generation | ||
kling/kling-v3-video-generation | ||
Vidu series
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per second (RPS) | Number of concurrent processing tasks (concurrency) | |
vidu/viduq3-ad_reference2video | 5 | 5
|
vidu/viduq3-drama_reference2video | 5 | |
vidu/viduq3-pro-fast_img2video | 5 | |
vidu/viduq3-turbo_text2video | 5 | |
vidu/viduq3-pro_text2video | 5 | |
vidu/viduq2_text2video | 5 | |
vidu/viduq3-turbo_img2video | 5 | |
vidu/viduq3-pro_img2video | 5 | |
vidu/viduq2-turbo_img2video | 5 | |
vidu/viduq2-pro_img2video | 5 | |
vidu/viduq2-pro-fast_img2video | 5 | |
vidu/viduq3-turbo_start-end2video | 5 | |
vidu/viduq3-pro_start-end2video | 5 | |
vidu/viduq2-turbo_start-end2video | 5 | |
vidu/viduq2-pro_start-end2video | 5 | |
vidu/viduq3-mix_reference2video | 5 | |
vidu/viduq3_reference2video | 5 | |
vidu/viduq3-turbo_reference2video | 5 | |
vidu/viduq2-pro_reference2video | 5 | |
vidu/viduq2_reference2video | 5 | |
MiniMax series
China (Beijing)
Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
Task submission API RPM limit | Maximum concurrent tasks | |
MiniMax/MiniMax-H3 | 300 | 5 |
3D model generation-Third-party models
Tripo series
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Task submission API RPM limit | Number of concurrent processing tasks (concurrency) | |
Tripo/Tripo-H3.1 | 5 | 10
|
Tripo/Tripo-P1.0 | 5 | |
Embedding models
Text embedding
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded) | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Input tokens only | |
qwen3.7-text-embedding | 24,000 | 1,000,000 |
qwen3.7-text-embedding-flash | 24,000 | 1,000,000 |
text-embedding-v1
| 1,800 | 1,200,000 |
text-embedding-v2
| 1,800 | 1,200,000 |
text-embedding-v3
| 1,800 | 1,200,000 |
text-embedding-v4
| 1,800 | 1,200,000 |
text-embedding-async-v1 | 60 | The number of queued and running asynchronous text embedding jobs for a user cannot exceed 50. To prevent resource contention from burst jobs, the number of concurrent jobs is limited to 3. This means a single user can have a maximum of 3 asynchronous text embedding jobs running at the same time. Other jobs will be queued. |
text-embedding-async-v2 | 60 | The number of queued and running asynchronous text embedding jobs for a user cannot exceed 50. To prevent resource contention from burst jobs, the number of concurrent jobs is limited to 3. This means a single user can have a maximum of 3 asynchronous text embedding jobs running at the same time. Other jobs will be queued. |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
text-embedding-v4 | International | 1,800 | 1,000,000 |
text-embedding-v3 | International | 6,000 | 24,000,000 |
Multimodal embedding
China (Beijing)
| Model name | Rate Limiting ConditionsThe following are the limits per minute. The service may also enforce limits based on requests per second (RPS = RPM/60) and tokens per second (TPS = TPM/60). | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3-vl-embedding | 2,400 | 1,200,000 |
qwen2.5-vl-embedding | 1,200 | 600,000 |
tongyi-embedding-vision-plus | 600 | 200,000 |
tongyi-embedding-vision-flash | 600 | 200,000 |
tongyi-embedding-vision-flash-2026-03-06 | 1,200 | 9,600,000 |
tongyi-embedding-vision-plus-2026-03-06 | 1,200 | 9,600,000 |
multimodal-embedding-v1 | 120 | 1,000,000 |
Sorting model
Reranking Models
China (Beijing)
| Model name | Rate limiting conditions (triggered when any value is exceeded)The following are the per-minute rate limits. The service may also enforce limits based on requests per second (RPS), which is RPM/60, and tokens per second (TPS), which is TPM/60. | |
|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |
qwen3.7-text-rerank | 3,000 | 9,000,000 |
qwen3-rerank | 5,400 | 5,000,000,000 |
qwen3-vl-rerank | 600 | 9,000,000 |
gte-rerank-v2 | 5,040 | 4,980,000,000 |
Singapore
| Model name | Service deployment scope | Rate limiting conditions (triggered when any value is exceeded)The following are the per-minute rate limits. The service may also enforce limits based on requests per second (RPS), which is RPM/60, and tokens per second (TPS), which is TPM/60. | |
|---|---|---|---|
| Requests per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
qwen3-rerank | International | 5,400 | 5,000,000,000 |
gte-rerank-v2 | International | 5,040 | 4,980,000,000 |
Industry
Tongyi FaRui (legal model)
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|
| Requests Per Minute (RPM) | ||
farui-plus | 240 | 1,000,000 |
Intention recognition
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|
| Requests Per Minute (RPM) | ||
tongyi-intent-detect-v3 | 1,200 | 1,000,000 |
Role assumption
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|
| Requests Per Minute (RPM) | ||
qwen-plus-character | 120 | 500,000 |
qwen-flash-character | 120 | 500,000 |
qwen-flash-character-2026-02-26 | 120 | 500,000 |
Singapore
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|---|
| Requests Per Minute (RPM) | Tokens Per Minute (TPM)Includes input and output tokens | ||
qwen-plus-character | International | 120 | 500,000 |
qwen-flash-character | International | 120 | 500,000 |
qwen-plus-character-ja | International | 120 | 500,000 |
US (Virginia)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|---|
| Requests Per Minute (RPM) | Tokens Per Minute (TPM)Includes input and output tokens | ||
qwen-plus-character | Global | 120 | 500,000 |
qwen-flash-character | Global | 120 | 500,000 |
Germany (Frankfurt)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|---|
| Requests Per Minute (RPM) | Tokens Per Minute (TPM)Includes input and output tokens | ||
qwen-plus-character | Global | 120 | 5,000,000 |
Japan (Tokyo)
| Model name | Service deployment scope | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|---|
| Requests Per Minute (RPM) | Tokens Per Minute (TPM)Includes input and output tokens | ||
qwen-plus-character | Global | 120 | 5,000,000 |
Interface interaction
China (Beijing)
| Model name | Rate limits (triggered if any value is exceeded)The limits below are specified per minute. The service may enforce limits based on records per second (RPS) (RPM/60) and Transactions Per Second (TPS) (TPM/60). | |
|---|---|---|
| Requests Per Minute (RPM) | ||
gui-plus | 80 | 540,000 |
gui-plus-2026-02-26 | 100 | 540,000 |
Unpublished models
For more information, see Model unpublishing policy.
Offline on May 13, 2026
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
Qwen language model | qwen-max-latest | 0 | 0 |
qwen-max-2025-01-25 | |||
qwen-max-2024-09-19 | |||
qwen-max-2024-04-28 | |||
qwen-turbo-latest | |||
qwen-turbo-2025-07-15 | |||
qwen-turbo-2025-04-28 | |||
qwen-turbo-2025-02-11 | |||
qwen-turbo-2024-11-01 | |||
qwq-plus-latest | |||
qwq-plus-2025-03-05 | |||
Qwen-VL | qwen-vl-max-latest | ||
qwen-vl-max-2025-08-13 | |||
qwen-vl-max-2025-04-08 | |||
qwen-vl-max-2025-04-02 | |||
qwen-vl-max-2025-01-25 | |||
qwen-vl-max-1230 | |||
qwen-vl-max-1119 | |||
qwen-vl-plus-latest | |||
qwen-vl-plus-2025-08-15 | |||
qwen-vl-plus-2025-07-10 | |||
qwen-vl-plus-2025-05-07 | |||
qwen-vl-plus-2025-01-25 | |||
qwen-vl-plus-0102 | |||
qvq-max-latest | |||
qvq-max-2025-05-15 | |||
qvq-max-2025-03-25 | |||
qvq-plus-latest | |||
qvq-plus-2025-05-15 | |||
Qwen math model | qwen-math-turbo-latest | ||
qwen-math-turbo-0919 | |||
Qwen-Coder | qwen-coder-plus-latest | ||
qwen-coder-plus-2024-11-06 | |||
qwen-coder-turbo-latest | |||
qwen-coder-turbo-0919 | |||
Text generation - Qwen - Open source | qwq-32b | ||
qwq-32b-preview | |||
qvq-72b-preview | |||
qwen2.5-vl-72b-instruct | |||
qwen2.5-vl-32b-instruct | |||
qwen2.5-vl-7b-instruct | |||
qwen2.5-vl-3b-instruct | |||
qwen2.5-7b-instruct-1m | |||
qwen2.5-14b-instruct-1m | |||
qwen2.5-72b-instruct | |||
qwen2.5-32b-instruct | |||
qwen2.5-14b-instruct | |||
qwen2.5-7b-instruct | |||
qwen2.5-math-72b-instruct | |||
qwen2.5-math-7b-instruct | |||
qwen2.5-math-1.5b-instruct | |||
qwen2.5-coder-32b-instruct | |||
qwen2.5-coder-14b-instruct | |||
qwen2.5-coder-7b-instruct | |||
qwen2.5-coder-3b-instruct | |||
qwen2.5-coder-1.5b-instruct | |||
qwen2.5-coder-0.5b-instruct | |||
qwen2.5-3b-instruct | |||
qwen2.5-1.5b-instruct | |||
qwen2.5-0.5b-instruct | |||
qwen3-0.6b | |||
qwen3-1.7b | |||
qwen3-4b | |||
Offline on March 30, 2026
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
Qwen language model | 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-abab | abab6.5g-chat | ||
abab6.5t-chat | |||
abab6.5s-chat | |||
Stable Diffusion 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 | ||
Offline on January 30, 2026
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and 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 | |||
Offline on July 30, 2025
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and 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 | ||
Offline on July 2, 2025
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | ||
Llama - Text input only | 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 limiting conditions (triggered if any value is exceeded) | |
|---|---|---|---|
Requests per second (RPS) | Number of concurrent tasks (concurrency) | ||
Anime character generation | wanx-style-cosplay-v1 | 0 | 0 |
Figure caption | wanx-ast | ||
WordArt | wordart-surnames | ||
AnyText text-image fusion | wanx-anytext-v1 | ||
Offline on May 8, 2025
| Category | Model name | Rate limiting conditions (triggered if any value is exceeded) | Replacement model | |
|---|---|---|---|---|
| Calls per minute (RPM) | Tokens per minute (TPM)Includes input and output tokens | |||
Text generation - Qwen | 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 | |||
Text generation - Qwen - 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 limiting conditions (triggered if any value is exceeded) | Replacement model | |
|---|---|---|---|---|
Requests per second (RPS) | Number of concurrent tasks (concurrency) | |||
Phantom Portrait Motionshop is a video generation model. | motionshop-video-detect | 0 | 0 | Use the Generate by Video Background feature of animate-anyone-gen2 for a similar effect. |
motionshop-gen3d | ||||
motionshop-synthesis | ||||