
Crunchbase.com Insights Extractor
- epctex/crunchbase-scraper
- Modified
- Users 758
- Runs 1M
- Created by
epctex
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.
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.
from apify_client import ApifyClient
# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_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} }",
}
# Run the Actor and wait for it to finish
run = client.actor("epctex/crunchbase-scraper").call(run_input=run_input)
# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)