How I Built An Apollo io Scraper With AI

preview_player
Показать описание
CHECK OUT THE NEW VIDEO FOR THE PLUGIN HERE!

Get The Script Here, Make Sure To Leave a Like! :)

Or Check Out The Github For The Script

Or View the Apify Script

Book a FREE 15-minute call with me!

Products I Love!

DM me on social media!

Shoot me an email!
Рекомендации по теме
Комментарии
Автор

Hey Mike, is the a chrome ext for this yet?

jamesroscoe
Автор

Hey Mike I think you can get all of the data if you would make a link list that you give to puppeteer and then scrape the individual pages.

pixelriegel
Автор

npm : The term 'npm' is not recognized as the name of a cmdlet, functi
on, script file, or operable program. Check the spelling of the name,
or if a path was included, verify that the path is correct and try aga
in. how can i fix this ?

antycus
Автор

it is redirecting to home page not to baseurl kindly help me

waqarkhan-btmu
Автор

I am having the issue of it not going to the page. It just goes to my home page.

christianhogan
Автор

Thanks Mike! The script is running, however, it still only extracts 25 contacts. My list currently has 1.1K contacts. Thoughts?

Creive-Media
Автор

Hey can you help i need to save contact in order too see the info how can i do this that whenever i search all the contact details are displayed😊

abdullasajid-vs
Автор

Thanks Mike! I keep getting the sign in with google page, even though I have turned it off on my account... Any ideas? I also get this error: TypeError: page.waitForTimeout is not a function.

cameryngardner
Автор

It’s working perfectly, but extracts just 25 and stops

osoloaaronic
Автор

I can design a web app if you’d be interested partnering and starting up an Apollo alternative. I have thousands of business leads we could market this to immediately.

realeestatereaction
Автор

thank you it's working perfectly :) @itsmikepowers IF you want to scrape more than 1K leads than add this at the start of the script

const puppeteer = require('puppeteer');
const fs = require('fs');

// Define the convertKToNumber function to handle 'K' notation
function convertKToNumber(input) {
let number;
if (typeof input === 'string' && input.includes('K')) {
number = parseFloat(input.replace('K', '')) * 1000;
} else {
number = parseInt(input, 10);
}
return isNaN(number) ? 0 : number;
}

entranodigital