Crunchbase.com Insights Extractor avatar
Crunchbase.com Insights Extractor
Try for free

7 days trial then $40.00/month - No credit card required now

View all Actors
Crunchbase.com Insights Extractor

Crunchbase.com Insights Extractor

epctex/crunchbase-scraper
Try for free

7 days trial then $40.00/month - No credit card required now

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.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "search": [
11        "Facebook"
12    ],
13    "maxItems": 20,
14    "startUrls": [
15        "https://www.crunchbase.com/organization/warner-law-offices",
16        "https://www.crunchbase.com/person/warner-l-baxter",
17        "https://www.crunchbase.com/hub/warner-bros-alumni-founded-companies",
18        "https://www.crunchbase.com/event/messenger-chatbots-the-secret-to-8x-engagement-20171010"
19    ],
20    "proxy": {
21        "useApifyProxy": true
22    },
23    "extendOutputFunction": ($) => { return {} },
24    "customMapFunction": (object) => { return {...object} }
25};
26
27(async () => {
28    // Run the Actor and wait for it to finish
29    const run = await client.actor("epctex/crunchbase-scraper").call(input);
30
31    // Fetch and print Actor results from the run's dataset (if any)
32    console.log('Results from dataset');
33    const { items } = await client.dataset(run.defaultDatasetId).listItems();
34    items.forEach((item) => {
35        console.dir(item);
36    });
37})();
Developer
Maintained by Community
Actor metrics
  • 31 monthly users
  • 99.5% runs succeeded
  • Created in May 2021
  • Modified about 15 hours ago