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

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "search": [
8    "Facebook"
9  ],
10  "maxItems": 20,
11  "startUrls": [
12    "https://www.crunchbase.com/organization/warner-law-offices",
13    "https://www.crunchbase.com/person/warner-l-baxter",
14    "https://www.crunchbase.com/hub/warner-bros-alumni-founded-companies",
15    "https://www.crunchbase.com/event/messenger-chatbots-the-secret-to-8x-engagement-20171010"
16  ],
17  "proxy": {
18    "useApifyProxy": true
19  },
20  "extendOutputFunction": "($) => { return {} }",
21  "customMapFunction": "(object) => { return {...object} }"
22}
23EOF
24
25# Run the Actor using an HTTP API
26# See the full API reference at https://docs.apify.com/api/v2
27curl "https://api.apify.com/v2/acts/thewolves~crunchbase-scraper/runs?token=$API_TOKEN" \
28  -X POST \
29  -d @input.json \
30  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 11 monthly users
  • 2 stars
  • 98.7% runs succeeded
  • Created in May 2024
  • Modified about 22 hours ago