Apollo.io (API) avatar

Apollo.io (API)

Try for free

3 days trial then $12.00/month - No credit card required now

Go to Store
Apollo.io (API)

Apollo.io (API)

canadesk/apollo-io-api
Try for free

3 days trial then $12.00/month - No credit card required now

Search and enrich People or Organizations (with Job postings). It's fast and costs little.

You can access the Apollo.io (API) programmatically from your own JavaScript 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.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "queries": [
12        {
13            "contact_email_status": [
14                "verified"
15            ],
16            "organization_locations": [
17                "new york"
18            ],
19            "organization_num_employees_ranges": [
20                "1-10"
21            ]
22        }
23    ],
24    "proxy": {
25        "useApifyProxy": true,
26        "apifyProxyGroups": []
27    }
28};
29
30// Run the Actor and wait for it to finish
31const run = await client.actor("canadesk/apollo-io-api").call(input);
32
33// Fetch and print Actor results from the run's dataset (if any)
34console.log('Results from dataset');
35console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36const { items } = await client.dataset(run.defaultDatasetId).listItems();
37items.forEach((item) => {
38    console.dir(item);
39});
40
41// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Apollo.io (API) API in JavaScript

The Apify API client for JavaScriptis the official library that allows you to use Apollo.io (API) API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Community

Actor Metrics

  • 5 monthly users

  • 1 star

  • >99% runs succeeded

  • Created in Jan 2025

  • Modified 11 days ago