How to scrape woocommerce products from competitor

rick.yesbed

Newbie
Joined
Dec 27, 2023
Messages
18
Reaction score
11
Hello guys, I am searching for an online free tool or method to scrape and import competitor products on my site.
The only problem is that i'm not a dev and I have no experience with coding, so I would not be able to build my own bot.
I've found some solution like https://woocommerce-scraper.com/ but I'm not willing to pay.
Does anyone know how I can do it for free?

I also thought that since the scraper will export image that will have the url linked to the competitor site, I will eventually need a method to change it in bulk. Any Ideas?
Thank you in advance
 
Learn how to scrap with beautiful soup and requests. It's not difficult.
 
use ChatGpt and write a custom script or hire a freelancer
 
I don't know anything about coding
Do you understand a bit html? Search in youtube about how to inspect elements of a website. Then install python, copy the element (probably some div) with a list of products and past to chat gpt to write a code to scrape it. Inspect the URL if there are many pages and write it to chat gpt.
It's really not difficult. The problem is if there is some antibot detection (Cloudflare or something similar) or if data of products are loaded when you click an element. Then it's requires more advanced techniques.
 
you can pinpoint the wordpress api endpoint and start from there! something like website.com/wp-json -> if its open, you can loop around here to get to the products section and you are done
 
YouTube and Apify.com are your friends. But you have some learning to do though.
 
Back
Top