Download emails from Instagram with Python
Use Instagram Scraper - All in one to get emails from Instagram with Python. Want to grab emails from Instagram? Instagram Scraper - All in one makes it quick and easy. Just tell it what to download and you’ll get your Instagram email available offline, for whenever you want it.
Get an Apify account01
You can’t get data from the inside of the platform if you’re not authorized in it. So to get started, create an Apify account. It only takes a minute and it's free of charge.
Initialize the API using your token02
After you’ve registered, it’s time to add your secret authentication token. You can find your API token on the Integrations page in Apify Console.
Define input and copy it in JSON03
To get the data from Instagram you first need to use Instagram Scraper - All in one to extract it. So let’s add a simple input and transfer it to your code. You can copy your input as a JSON from the Instagram Scraper - All in one’s Input tab in Console.
Integrate Apify into your codebase04
Finally, call the Instagram Scraper - All in one from your Python project. Use Apify Client or Endpoints. You’ll be able to export scraped Instagram data in no time by running the sample code below ↓.
Monitor your Instagram Scraper - All in one runs05
Head over to our dashboard and see how Instagram Scraper - All in one runs are executed in real time. Here you can also download the run logs and keep an eye on the API’s performance.
Get your Python project up and running
Add-on to step 4: start your Python project by executing this code snippet in your go-to environment.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "action": "scrapeProfiles",10 "scrapeProfiles.profileList": ["zuck"],11 "scrapeFriendships.profile": "zuck",12 "scrapeFriendships.friendshipType": "followers",13 "scrapeCommentsOfPost.url": "https://www.instagram.com/p/CwsgvUlLtEn/",14 "scrapeLikesOfPost.url": "https://www.instagram.com/p/CwsgvUlLtEn/",15 "scrapePostsOfUser.profile": "https://www.instagram.com/zuck",16 "proxy": {17 "useApifyProxy": True,18 "apifyProxyGroups": ["RESIDENTIAL"],19 },20 "minDelay": 1,21 "maxDelay": 15,22}23
24# Run the Actor and wait for it to finish25run = client.actor("curious_coder/instagram-scraper").call(run_input=run_input)26
27# Fetch and print Actor results from the run's dataset (if there are any)28print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])29for item in client.dataset(run["defaultDatasetId"]).iterate_items():30 print(item)31
32# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startEnjoy $5 of free platform usage every month to explore and kickstart your projects.
Get started on Apify instantly without the hassle of entering your credit card information.
Join our Discord community to ask questions, share ideas, and connect with developers.
Instagram Scraper
apify/instagram-scraper
Scrape and download Instagram posts, profiles, places, hashtags, photos, and comments. Get data from Instagram using one or more Instagram URLs or search queries. Export scraped data, run the scraper via API, schedule and monitor runs or integrate with other tools.
153K
4.6
(232)
Instagram Comments Scraper
apify/instagram-comment-scraper
Scrape Instagram comments from posts or reels. Just add one or more Instagram post URLs to get comment text, post and comment IDs, replies, timestamp, owner IDs, usernames, profile pics. Export scraped datasets, run the scraper via API, schedule and monitor runs or integrate with other tools.
21K
3.1
(25)
Instagram Profile Scraper
apify/instagram-profile-scraper
Scrape all Instagram profile info. Just add Instagram usernames, IDs or URLs and extract name, join date, number of followers, location, bio, website, related profiles, video&post count, latest posts. Export scraped data, schedule scraper via API, and integrate with other tools or AI workflows.
74K
4.7
(73)
Ready to start downloading Instagram emails?
You just need a free Apify account
Tiktok Profile Email Scraper
scraper-mind/tiktok-profile-email-scraper
Extract emails and profile data from public TikTok accounts in seconds with TikTok Profile Email Scraper. Perfect for lead gen, research, and marketing. Supports smart proxies, retries, and JSON output. Fast, reliable, no coding needed!
193
5.0
(1)
Facebook Reels Downloader & Video Downloader
codenest/facebook-reels-downloader-video-downloader
Easily download Facebook Reels and videos in multiple qualities, including separate audio streams, HD variants, thumbnails, and metadata like duration and view counts for professional use. Try it now. 👌Facebook Reels Downloader & Video Downloader.
7
Instagram Video Downloader
codenest/instagram-video-downloader
Effortlessly download high-quality Instagram videos with complete engagement analytics, including likes, comments, user details, and captions. Access direct CDN links for high-quality videos and thumbnails for professional media analysis and content archiving.🚀Instagram Video Downloader.
5
Apify’s wide range of tools use a technique called web scraping to extract public data from websites. These scrapers access the website the same way as you would with a browser, find the image, video, or text you want, and download it for you. They’re a fast and efficient way to get data at scale.
Web scraping is a handy method for collecting information from various websites. It's like having a digital assistant that visits web pages on your behalf, pulling out the details you need such as prices, descriptions, addresses, and contact information. But it's more than just text; this tool can also download images and videos, making it a comprehensive way to gather content from the online world. It takes care of all the complex, technical parts, so you don't have to.
Web scraping is a method where you choose websites to collect specific content, including text, images, and videos. You begin by identifying the web pages that host the visual media you're interested in. Next, you use a web scraping tool tailored to locate the parts of the page containing the images or videos you want to download. Once the tool is set up and run, it navigates to the chosen web pages, identifies the images and videos, and downloads them for you. It's a streamlined way to gather pictures and videos from online sources without having to manually download each item.
Yes, web scraping is legal for gathering public information from websites. But be careful with personal or confidential data, as well as intellectual property, because laws and regulations might protect them. It's good practice to check the website's rules or terms of service to know what's allowed. If you're not sure, getting legal advice can help ensure you're using web scraping correctly and within the law.
Actors are serverless cloud programs that run on the Apify platform and do computing jobs. They’re called Actors because, like human actors, they perform actions based on a script. They can perform anything from simple actions (such as filling out a web form or sending an email) to complex operations (such as crawling an entire website or removing duplicates from a large dataset). Actor runs can be as short or as long as necessary. They could last seconds, hours, or even run infinitely.