Example

Web Scraping

Learn how to effortlessly build powerful web scrapers with Integromat/Make, now enhanced with the cheerio library. This addition makes web scraping more accessible than ever, eliminating the need for additional services. Furthermore, we've integrated the robust axios HTTP request library, offering you a comprehensive toolkit for all your web scraping projects. Dive into the world of data extraction with ease and efficiency, utilizing the best tools the industry has to offer.

Example 1
Input-Field

{"content":"<h2 class='title'>Hello World</h2>"}

JS-Code-Field

const $ = cheerio.load(input.content);$('h2.title').text();

Output-Field

{ output: 'Hello World' }

Example 2
Input-Field

 

JS-Code-Field

const $ = cheerio.load((await axios.get('https://www.google.de/')).data);$('head title').text();

Output-Field

{ output: 'Google' }

Make.com Custom JavaScript Web Scraping Example
?