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

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

View all Actors
Crunchbase.com Insights Extractor

Crunchbase.com Insights Extractor

thewolves/crunchbase-scraper
Try for free

3 days trial then $25.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 more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "search": ["Facebook"],
9    "maxItems": 20,
10    "startUrls": [
11        "https://www.crunchbase.com/organization/warner-law-offices",
12        "https://www.crunchbase.com/person/warner-l-baxter",
13        "https://www.crunchbase.com/hub/warner-bros-alumni-founded-companies",
14        "https://www.crunchbase.com/event/messenger-chatbots-the-secret-to-8x-engagement-20171010",
15    ],
16    "proxy": { "useApifyProxy": True },
17    "extendOutputFunction": "($) => { return {} }",
18    "customMapFunction": "(object) => { return {...object} }",
19}
20
21# Run the Actor and wait for it to finish
22run = client.actor("thewolves/crunchbase-scraper").call(run_input=run_input)
23
24# Fetch and print Actor results from the run's dataset (if there are any)
25print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
26for item in client.dataset(run["defaultDatasetId"]).iterate_items():
27    print(item)
28
29# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 11 monthly users
  • 2 stars
  • 98.7% runs succeeded
  • Created in May 2024
  • Modified about 23 hours ago