Hi,
Recently I am trying to upload some retail products to our Shopify store using GraphQL (version 2025-07). But I keep getting error response, saying that:
{
'message': 'Daily variant creation limit reached. Please try again later. See https://help.shopify.com/api/getting-started/api-call-limit for more information about rate limits and how to avoid them.',
'locations': [{'line': 3, 'column': 17}],
'path': ['productCreate'],
'extensions': {'code': 'VARIANT_THROTTLE_EXCEEDED'}
}
The products that I am trying to upload are women’s clothing such as dresses and coats. Each product contains about 10 images. Each product has two options: size and color. The size option contains 4 values: S, M, L, and XL; and the color might contain common colors such as red, blue, and so on. So each product contains about 10 variants.
I have been getting the same error message for weeks. Today I did a counting: Before getting this error message, only 107 products and 1019 variants are uploaded. So is the “daily variant creation limit” 1019 per day?
Our store is using the “Grow” plan.
By the way, when I click into the url given by the error message:
It redirects to https://shopify.dev/docs. So I did not get useful information about the daily limit.
Any help is appreciated. Thanks!