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.

Developer
Maintained by Community

Actor Metrics

  • 46 Monthly users

  • 5.0 / 5 (1)

  • 1 bookmark

  • 89% runs succeeded

  • Created in Jan 2025

  • Modified 2 months ago

You can access the Apollo Scraper programmatically from your own 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.

1# Start Server-Sent Events (SSE) session and keep it running
2curl "https://actors-mcp-server.apify.actor/sse?token=<YOUR_API_TOKEN>&actors=darth_vader/apollo-scraper"
3
4# Session id example output:
5# event: endpoint
6# data: /message?sessionId=9d820491-38d4-4c7d-bb6a-3b7dc542f1fa

Using Apollo Scraper via Model Context Protocol (MCP) server

MCP server lets you use Apollo Scraper within your AI workflows. Send API requests to trigger actions and receive real-time results. Take the received sessionId and use it to communicate with the MCP server. The message starts the Apollo Scraper Actor with the provided input.

1curl -X POST "https://actors-mcp-server.apify.actor/message?token=<YOUR_API_TOKEN>&session_id=<SESSION_ID>" -H "Content-Type: application/json" -d '{
2  "jsonrpc": "2.0",
3  "id": 1,
4  "method": "tools/call",
5  "params": {
6    "arguments": {
7      "cookies": [
8            {
9                  "domain": ".apollo.io",
10                  "expirationDate": 1737654209.566723,
11                  "hostOnly": false,
12                  "httpOnly": true,
13                  "name": "__cf_bm",
14                  "path": "/",
15                  "sameSite": "no_restriction",
16                  "secure": true,
17                  "session": false,
18                  "storeId": "0",
19                  "value": "P45vdHUTxhhwXkqyHjMTgvXkqWJ0OpbCkFiHxRwPItE-1737652412-1.0.1.1-dF325xgXXIsXb3.YEo91oj.1g7zw5eQjs4Jg0UoorlG_O56JBHbcEX3CQ3RLbZncAMJUSm8OalgDVvWfMHs9yg",
20                  "id": 1
21            },
22            {
23                  "domain": ".apollo.io",
24                  "expirationDate": 1737654265,
25                  "hostOnly": false,
26                  "httpOnly": false,
27                  "name": "__hssc",
28                  "path": "/",
29                  "sameSite": "lax",
30                  "secure": false,
31                  "session": false,
32                  "storeId": "0",
33                  "value": "21978340.1.1737652465939",
34                  "id": 2
35            }
36      ],
37      "apolloUrl": "https://testExample.com"
38},
39    "name": "darth_vader/apollo-scraper"
40  }
41}'

The response should be: Accepted. You should received response via SSE (JSON) as:

1event: message
2data: {
3  "result": {
4    "content": [
5      {
6        "type": "text",
7        "text": "ACTOR_RESPONSE"
8      }
9    ]
10  }
11}

Configure local MCP Server via standard input/output for Apollo Scraper

You can connect to the MCP Server using clients like ClaudeDesktop and LibreChat or build your own. The server can run both locally and remotely, giving you full flexibility. Set up the server in the client configuration as follows:

1{
2  "mcpServers": {
3    "actors-mcp-server": {
4      "command": "npx",
5      "args": [
6        "-y",
7        "@apify/actors-mcp-server",
8        "--actors",
9        "darth_vader/apollo-scraper"
10      ],
11      "env": {
12        "APIFY_TOKEN": "<YOUR_API_TOKEN>"
13      }
14    }
15  }
16}

You can further access the MCP client through the Tester MCP Client, a chat user interface to interact with the server.

To get started, check out the documentation and example clients. If you are interested in learning more about our MCP server, check out our blog post.