The products.json endpoint works fine until you reach /products.json?page=101&limit=250 . Upon reaching this, you get status code 400 and the error message below:
{"errors": "Page * Limit exceeds the 25000 limit."}
If you want to experiment with this error, try scraping Fashion Nova.
Note that some websites disable the products.json endpoint, in which case you should look for the public <STORE>.myshopify.com/products.json endpoint. It looks like your scraper does not take this into consideration.
Please fix the 25000 limit issue. Thanks.
The products.json endpoint works fine until you reach
/products.json?page=101&limit=250. Upon reaching this, you get status code400and the error message below:If you want to experiment with this error, try scraping Fashion Nova.
Note that some websites disable the products.json endpoint, in which case you should look for the public
<STORE>.myshopify.com/products.jsonendpoint. It looks like your scraper does not take this into consideration.Please fix the 25000 limit issue. Thanks.