Crunchbase.com Insights Extractor

  • epctex/crunchbase-scraper
  • Modified
  • Users 757
  • Runs 1M
  • Created by Author's avatarepctex

Crunchbase Data Extractor empowers you to unlock valuable insights from millions of organizations. Extract acquisitions, people, reports, events, and more with customizable search for targeted results. Supercharge your research and business intelligence with ease.

Free trial for 7 days

Then $40.00/month

No credit card required now

Crunchbase.com Insights Extractor

Free trial for 7 days

Then $40.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with API token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "search": [
        "Facebook"
    ],
    "maxItems": 20,
    "startUrls": [
        "https://www.crunchbase.com/organization/warner-law-offices",
        "https://www.crunchbase.com/person/warner-l-baxter",
        "https://www.crunchbase.com/hub/warner-bros-alumni-founded-companies",
        "https://www.crunchbase.com/event/messenger-chatbots-the-secret-to-8x-engagement-20171010"
    ],
    "proxy": {
        "useApifyProxy": true
    },
    "extendOutputFunction": ($) => { return {} },
    "customMapFunction": (object) => { return {...object} }
};

(async () => {
    // Run the Actor and wait for it to finish
    const run = await client.actor("epctex/crunchbase-scraper").call(input);

    // Fetch and print Actor results from the run's dataset (if any)
    console.log('Results from dataset');
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    items.forEach((item) => {
        console.dir(item);
    });
})();