
Crunchbase.com Insights Extractor
- epctex/crunchbase-scraper
- Modified
- Users 757
- 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.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"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} }"
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~crunchbase-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'