Apollo Scraper - Pay per leads avatar

Apollo Scraper - Pay per leads

Try for free

Pay $5.00 for 1,000 results

Go to Store
Apollo Scraper - Pay per leads

Apollo Scraper - Pay per leads

curious_coder/apollo-scraper
Try for free

Pay $5.00 for 1,000 results

Scrape apollo to get b2b leads with emails, work history, company website, company phone numbers, etc

You can access the Apollo Scraper - Pay per leads programmatically from your own applications by using the Apify API. You can 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{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "1.1",
5    "x-build-id": "bAdrNXTKZtItzhsZL"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/curious_coder~apollo-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-curious_coder-apollo-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/curious_coder~apollo-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-curious_coder-apollo-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/curious_coder~apollo-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-curious_coder-apollo-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "searchUrl"
135        ],
136        "properties": {
137          "cookie": {
138            "title": "🍪 Cookies",
139            "type": "array",
140            "description": "Cookies are used to authorize the actor with apollo<br><br> Follow these steps to get the cookies: <ol> <li>Install [Cookie-Editor](https://chromewebstore.google.com/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm) chrome extension</li> <li> Login to your apollo account </li> <li> Click on the extension and export the apollo cookies </li> <li>Paste the copied contents here</li> </ol> <p> <a href=https://youtu.be/YuKp9BlVgNM target=_blank><img src=https://www.youtube.com/s/desktop/66e817d4/img/favicon_32x32.png width=16px> Video - How to get cookies (0:14)</a>"
141          },
142          "email": {
143            "title": "👤 Apollo login email",
144            "type": "string",
145            "description": "Email used to login to apollo.io account. Not required when cookies are provided"
146          },
147          "password": {
148            "title": "🔑 Password",
149            "type": "string",
150            "description": "Not required when cookies are provided"
151          },
152          "searchUrl": {
153            "title": "🔎 Search URL",
154            "type": "string",
155            "description": "Enter final URL from address bar after you finished searching"
156          },
157          "getEmails": {
158            "title": "Get emails",
159            "type": "boolean",
160            "description": "Request access to emails and scrape them",
161            "default": false
162          },
163          "guessedEmails": {
164            "title": "Include guessed emails",
165            "type": "boolean",
166            "description": "Include guessed emails or not. Applicable only when 'Get email' option is enabled",
167            "default": true
168          },
169          "waitForVerification": {
170            "title": "Wait for email verification",
171            "type": "boolean",
172            "description": "Apollo starts email verification as soon as you request for email access. This can take a few minutes to complete. If you enable this option, scraper will wait until apollo completes this process before scraping the leads so that you get latest status of emails",
173            "default": false
174          },
175          "listName": {
176            "title": "List name",
177            "type": "string",
178            "description": "Name of the apollo list if you want to save leads to and find emails"
179          },
180          "startPage": {
181            "title": "📄 Start page",
182            "minimum": 1,
183            "type": "integer",
184            "description": "Page number to start scraping",
185            "default": 1
186          },
187          "count": {
188            "title": "#️⃣ Total number of records required",
189            "type": "integer",
190            "description": "Leave this field empty if you want to scrape all items."
191          },
192          "minDelay": {
193            "title": "⏱️ Minimum wait duration",
194            "minimum": 1,
195            "maximum": 60,
196            "type": "integer",
197            "description": "Minimum duration in seconds to wait before scraping next page",
198            "default": 2
199          },
200          "maxDelay": {
201            "title": "⏱️ Maximum wait duration",
202            "minimum": 5,
203            "maximum": 60,
204            "type": "integer",
205            "description": "Maximum duration in seconds to wait before scraping next page",
206            "default": 7
207          },
208          "proxy": {
209            "title": "Proxy",
210            "type": "object",
211            "description": "Use proxy from your account's country for extra safety. Keep the proxy config same accross all runs"
212          }
213        }
214      },
215      "runsResponseSchema": {
216        "type": "object",
217        "properties": {
218          "data": {
219            "type": "object",
220            "properties": {
221              "id": {
222                "type": "string"
223              },
224              "actId": {
225                "type": "string"
226              },
227              "userId": {
228                "type": "string"
229              },
230              "startedAt": {
231                "type": "string",
232                "format": "date-time",
233                "example": "2025-01-08T00:00:00.000Z"
234              },
235              "finishedAt": {
236                "type": "string",
237                "format": "date-time",
238                "example": "2025-01-08T00:00:00.000Z"
239              },
240              "status": {
241                "type": "string",
242                "example": "READY"
243              },
244              "meta": {
245                "type": "object",
246                "properties": {
247                  "origin": {
248                    "type": "string",
249                    "example": "API"
250                  },
251                  "userAgent": {
252                    "type": "string"
253                  }
254                }
255              },
256              "stats": {
257                "type": "object",
258                "properties": {
259                  "inputBodyLen": {
260                    "type": "integer",
261                    "example": 2000
262                  },
263                  "rebootCount": {
264                    "type": "integer",
265                    "example": 0
266                  },
267                  "restartCount": {
268                    "type": "integer",
269                    "example": 0
270                  },
271                  "resurrectCount": {
272                    "type": "integer",
273                    "example": 0
274                  },
275                  "computeUnits": {
276                    "type": "integer",
277                    "example": 0
278                  }
279                }
280              },
281              "options": {
282                "type": "object",
283                "properties": {
284                  "build": {
285                    "type": "string",
286                    "example": "latest"
287                  },
288                  "timeoutSecs": {
289                    "type": "integer",
290                    "example": 300
291                  },
292                  "memoryMbytes": {
293                    "type": "integer",
294                    "example": 1024
295                  },
296                  "diskMbytes": {
297                    "type": "integer",
298                    "example": 2048
299                  }
300                }
301              },
302              "buildId": {
303                "type": "string"
304              },
305              "defaultKeyValueStoreId": {
306                "type": "string"
307              },
308              "defaultDatasetId": {
309                "type": "string"
310              },
311              "defaultRequestQueueId": {
312                "type": "string"
313              },
314              "buildNumber": {
315                "type": "string",
316                "example": "1.0.0"
317              },
318              "containerUrl": {
319                "type": "string"
320              },
321              "usage": {
322                "type": "object",
323                "properties": {
324                  "ACTOR_COMPUTE_UNITS": {
325                    "type": "integer",
326                    "example": 0
327                  },
328                  "DATASET_READS": {
329                    "type": "integer",
330                    "example": 0
331                  },
332                  "DATASET_WRITES": {
333                    "type": "integer",
334                    "example": 0
335                  },
336                  "KEY_VALUE_STORE_READS": {
337                    "type": "integer",
338                    "example": 0
339                  },
340                  "KEY_VALUE_STORE_WRITES": {
341                    "type": "integer",
342                    "example": 1
343                  },
344                  "KEY_VALUE_STORE_LISTS": {
345                    "type": "integer",
346                    "example": 0
347                  },
348                  "REQUEST_QUEUE_READS": {
349                    "type": "integer",
350                    "example": 0
351                  },
352                  "REQUEST_QUEUE_WRITES": {
353                    "type": "integer",
354                    "example": 0
355                  },
356                  "DATA_TRANSFER_INTERNAL_GBYTES": {
357                    "type": "integer",
358                    "example": 0
359                  },
360                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
361                    "type": "integer",
362                    "example": 0
363                  },
364                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
365                    "type": "integer",
366                    "example": 0
367                  },
368                  "PROXY_SERPS": {
369                    "type": "integer",
370                    "example": 0
371                  }
372                }
373              },
374              "usageTotalUsd": {
375                "type": "number",
376                "example": 0.00005
377              },
378              "usageUsd": {
379                "type": "object",
380                "properties": {
381                  "ACTOR_COMPUTE_UNITS": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "DATASET_READS": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "DATASET_WRITES": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "KEY_VALUE_STORE_READS": {
394                    "type": "integer",
395                    "example": 0
396                  },
397                  "KEY_VALUE_STORE_WRITES": {
398                    "type": "number",
399                    "example": 0.00005
400                  },
401                  "KEY_VALUE_STORE_LISTS": {
402                    "type": "integer",
403                    "example": 0
404                  },
405                  "REQUEST_QUEUE_READS": {
406                    "type": "integer",
407                    "example": 0
408                  },
409                  "REQUEST_QUEUE_WRITES": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "DATA_TRANSFER_INTERNAL_GBYTES": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
422                    "type": "integer",
423                    "example": 0
424                  },
425                  "PROXY_SERPS": {
426                    "type": "integer",
427                    "example": 0
428                  }
429                }
430              }
431            }
432          }
433        }
434      }
435    }
436  }
437}

Apollo Scraper - Pay per leads OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Apollo Scraper - Pay per leads from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Developer
Maintained by Community

Actor Metrics

  • 383 monthly users

  • 51 bookmarks

  • >99% runs succeeded

  • 5.3 days response time

  • Created in Aug 2023

  • Modified 10 days ago

Categories