Apollo Scraper avatar

Apollo Scraper

Try for free

2 hours trial then $20.00/month - No credit card required now

Go to Store
Apollo Scraper

Apollo Scraper

darth_vader/apollo-scraper
Try for free

2 hours trial then $20.00/month - No credit card required now

Scrapes contact data from Apollo.io search results using your account cookies. Features include multi-page scraping, configurable delays, and automatic handling of rate limits. Perfect for lead generation and sales prospecting. Requires valid Apollo.io account.

You can access the Apollo Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9    "cookies": [
10        {
11            "domain": ".apollo.io",
12            "expirationDate": 1737654209.566723,
13            "hostOnly": False,
14            "httpOnly": True,
15            "name": "__cf_bm",
16            "path": "/",
17            "sameSite": "no_restriction",
18            "secure": True,
19            "session": False,
20            "storeId": "0",
21            "value": "P45vdHUTxhhwXkqyHjMTgvXkqWJ0OpbCkFiHxRwPItE-1737652412-1.0.1.1-dF325xgXXIsXb3.YEo91oj.1g7zw5eQjs4Jg0UoorlG_O56JBHbcEX3CQ3RLbZncAMJUSm8OalgDVvWfMHs9yg",
22            "id": 1,
23        },
24        {
25            "domain": ".apollo.io",
26            "expirationDate": 1737654265,
27            "hostOnly": False,
28            "httpOnly": False,
29            "name": "__hssc",
30            "path": "/",
31            "sameSite": "lax",
32            "secure": False,
33            "session": False,
34            "storeId": "0",
35            "value": "21978340.1.1737652465939",
36            "id": 2,
37        },
38    ],
39    "apolloUrl": "https://testExample.com",
40}
41
42# Run the Actor and wait for it to finish
43run = client.actor("darth_vader/apollo-scraper").call(run_input=run_input)
44
45# Fetch and print Actor results from the run's dataset (if there are any)
46print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
47for item in client.dataset(run["defaultDatasetId"]).iterate_items():
48    print(item)
49
50# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

Apollo Scraper API in Python

The Apify API client for Pythonis the official library that allows you to use Apollo Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

pip install apify-client

Other API clients include:

Developer
Maintained by Community

Actor Metrics

  • 18 monthly users

  • 1 star

  • 89% runs succeeded

  • Created in Jan 2025

  • Modified 11 days ago