How to get shopify stores products

Question:

I am looking for a way I could get the best selling page data that appears on any shopify website, eg. https://exampleshopify.com/collections/all?sort-by=best-selling. This URL returns a view which is differently structured for every different shopify store. I want to have a generic code/idea that could crawl this data or could get it from API for every store.

NOTE: Make sure to replace exampleshopify.com with any other available shopify store website.

Asked By: DIGVJSS

||

Answers:

I don’t know python, But if you add .json to the URL you’ll get a json object which I think you can process it easily using python.

https://exampleshopify.com/collections/all/products.json?sort-by=best-selling
Answered By: Med Djelaili

Rye’s Shopify product API lets you do this. https://www.rye.com/

Answered By: Kevin
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.