Tool extract data from Fiverr use super way (Console)
Fiverr is a big website of Works, Fiverr connects businesses with freelancers offering digital services in 500+ categories. Data of website have a big value, but crawl Fiverr is not easy
I try to some ways:
- Use Requests
- Use Selenium: Website can detect it is not human
...
but not successful!
And I really can request API in Console of Website
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(xhttp.responseText)
}
};
xhttp.open("GET", 'https://www.fiverr.com/', true);
xhttp.send();
So, do it :V