Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1 KB

README.md

File metadata and controls

34 lines (23 loc) · 1 KB

Fiverr Extract Data (Crawl data Fiverr)

Tool extract data from Fiverr use super way (Console)

How to extract data from Fiverr

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

image

  • 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();

image

So, do it :V