# 🚀 Crunchbase Investors Scraper · 2,500 Free Investors/Month (`omkar-cloud/crunchbase-investors-scraper`) Actor

Crunchbase Investors Scraper gets you VCs, angels & funds ⚡ fast, 🎯 100% accurate and 🔍 ridiculously detailed — website, HQ, deal count, portfolio size, team & rank. 💰 $2 per 1,000 investors, no start fee. Scrape your first 2,500 investors free every month 🚀

- **URL**: https://apify.com/omkar-cloud/crunchbase-investors-scraper.md
- **Developed by:** [Chetan Jain](https://apify.com/omkar-cloud) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 investor scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Crunchbase Investors Scraper

Crunchbase Investors Scraper by Omkar Cloud gets you 🎯 accurate, 🔍 detailed Crunchbase data.

Crunchbase uses Cloudflare bot protection to stop you from getting its data.

Crunchbase Investors Scraper beats it, so you get the data, and can successfully complete your project.

**$2 per 1,000 investors.** And with Apify's free plan you get $5 of credit every month, so your first **~2,500 investors each month are free**.

This is an excellent Actor made by Omkar Cloud, which is Rated Excellent — [4.7 based on 30 reviews on Trustpilot](https://www.trustpilot.com/review/omkar.cloud).

👉 [**Try Crunchbase Investors Scraper free**](https://apify.com/omkar-cloud/crunchbase-investors-scraper) — your first ~2,500 investors are Free.

### What can I get

- 🏦 **Search 349K+ investors** — VCs, angels, accelerators, corporate VCs and PE firms
- 🔍 **Filter by what matters** — investor type, stage focus, location, industry, deal count and exits
- 📊 **Deal activity on every row** — investments made, Crunchbase investor rank, HQ and categories
- 🧾 **Full investor profiles** — website, socials, portfolio size, lead investments, funds and team for firms; jobs and board seats for angels

### Why Crunchbase Investors Scraper

Most other Crunchbase scrapers fail you in one of four ways:

- 🗄️ **Inaccurate, cached, stale data**
- 🧩 **Low-detail data** — a few fields per row, never the full picture
- 💸 **Pay more to get the same data**
- 🪦 **Works today, breaks next month** — nobody maintains it

Crunchbase Investors Scraper is scraped live on every run, priced honestly, and actively maintained.

### Example: A Crunchbase Investor

```json
{
  "id": "headlinevc",
  "name": "Headline",
  "link": "https://www.crunchbase.com/organization/headlinevc",
  "short_description": "Headline is a venture capital firm that focuses on seed to early-stage investments in technology-driven companies.",
  "website": "http://headline.com",
  "social": { "linkedin": "https://www.linkedin.com/company/headlinevc", "twitter": "https://x.com/HeadlineVC" },
  "location": { "city": "San Francisco", "region": "California", "country": "United States" },
  "investing": { "investments_count": 575, "lead_investments_count": 209, "portfolio_count": 344, "funds_count": 10 },
  "people": { "employees_count": 43, "contacts_count": 69 },
  "investor_rank": 7,
  "entity_type": "organization",
  "source_kind": "search",
  "source_input": "filters"
}
```

*Trimmed for readability.*

### Get Started with 2,500 Free Investors

1. [Hit **Try for Free Button**](https://apify.com/omkar-cloud/crunchbase-investors-scraper) — the input is pre-filled with venture capital firms in San Francisco.
2. Enjoy your data 😎.

### Pricing

High value, Low price.

| What | Price | What you get |
|---|---|---|
| **Standard investors** | **$2 per 1,000** | id, name, kind (firm or angel), link, logo, description, categories, location, investments count, rank + source context |
| **Detailed investors** | $7 per 1,000 | Everything above + website, email, socials, portfolio and lead-investment counts, funds, team size and contacts for firms; jobs, board seats and investing stats for angels |

No start fee — you pay only for the rows you get. Control your spend with **Max Investors per Search**: 1,000 investors ≈ $2.

💡 Apify's free plan includes $5 of credit every month — about **2,500 free investors, every month**.

👉 [**Scrape your first 2,500 investors free**](https://apify.com/omkar-cloud/crunchbase-investors-scraper)

### Run It from Code

Grab your API token from [Integrations Settings here](https://console.apify.com/settings/integrations) and replace `<YOUR_API_TOKEN>` below.

**Python** (`pip install apify-client`)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_API_TOKEN>")
run = client.actor("omkar-cloud/crunchbase-investors-scraper").call(run_input={
    "investorType": "venture_capital",
    "location": "san-francisco-california",
    "scrapeInvestorDetails": True,
    "maxResultsPerSearch": 30,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["name"], item["website"], item["investments_count"])
```

**Node.js** (`npm install apify-client`)

```javascript
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });
const run = await client.actor('omkar-cloud/crunchbase-investors-scraper').call({
    searchQueries: ['sequoia', 'andreessen'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

### FAQ

**How much does a run cost?** $2 per 1,000 investors, flat on every Apify plan, with no start fee. Detailed investors cost $7 per 1,000.

**Does it cover angels too?** Yes — rows are either firms (`type: organization`) or people (`type: person`), and detailed mode fetches the matching profile.

**Why are some investor fields empty?** Crunchbase only shows investor type, stage and exit counts to paying members, so they come back as `null` in the rows. You can still filter by them.

**Do I need a Crunchbase account or proxies?** No. Paste names, permalinks or crunchbase.com URLs and run.

### 💬 Have Questions? We Have Answers.

You're a business owner — we know how hard completing a project can be. So we offer full support: just message us and we'll reply ✅ with a solution within 1 working day.

[![Message Us on WhatsApp](https://raw.githubusercontent.com/omkarcloud/assets/master/images/whatsapp-us.png)](https://api.whatsapp.com/send?phone=918178804274\&text=I%20need%20help%20with%20using%20the%20Crunchbase%20Investors%20Scraper%20Actor.)
[![Ask Us on Email](https://raw.githubusercontent.com/omkarcloud/assets/master/images/ask-on-email.png)](mailto:happy.to.help@omkar.cloud?subject=Help%20with%20Crunchbase%20Investors%20Scraper%20Actor\&body=I%20need%20help%20with%20using%20the%20Crunchbase%20Investors%20Scraper%20Actor.)

You are important to us — just message us and we will solve your problem ✅ within 1 working day. 🩷 Pinky Promise 🤙!

### Related Actors

- 🏢 [**Crunchbase Scraper**](https://apify.com/omkar-cloud/crunchbase-scraper) — company profiles with founders, headcount, growth scores & tech stack. $2 per 1,000 companies.
- 💰 [**Crunchbase Funding Rounds Scraper**](https://apify.com/omkar-cloud/crunchbase-funding-rounds-scraper) — every round a company raised or an investor joined. $2 per 1,000 rounds.

### Popular Actors by Omkar Cloud

- [**IMDb Scraper**](https://apify.com/omkar-cloud/imdb-scraper) — IMDb titles: ratings, cast, box office & charts
- [**G2 Product Scraper**](https://apify.com/omkar-cloud/g2-product-scraper) — G2 product details, ratings & AI-found contacts
- [**Website Email Contact Scraper**](https://apify.com/omkar-cloud/website-email-contact-scraper) — emails, phones & socials from any website
- [**AliExpress Product Scraper**](https://apify.com/omkar-cloud/aliexpress-product-scraper) — live product details, SKU variants, stock & shipping
- [**Booking Scraper**](https://apify.com/omkar-cloud/booking-scraper) — Booking.com hotels: prices, ratings, rooms & amenities

👉 [**Scrape your first 2,500 investors free now**](https://apify.com/omkar-cloud/crunchbase-investors-scraper)

# Actor input Schema

## `searchQueries` (type: `array`):

Investor name contains this text, e.g. `sequoia`. Leave empty to search by filters only.

## `investorType` (type: `string`):

Kind of investor, e.g. Venture Capital or Angel.

## `investorStage` (type: `string`):

Stage the investor focuses on.

## `location` (type: `string`):

Investor HQ permalink or name, e.g. `san-francisco-california` or `London`.

## `category` (type: `string`):

Industry permalink or name, e.g. `artificial-intelligence`.

## `minInvestments` (type: `integer`):

Only investors with at least this many funding rounds invested in.

## `minExits` (type: `integer`):

Only investors with at least this many portfolio exits.

## `sort` (type: `string`):

Order of the investors. `Name` returns the first 15.

## `maxResultsPerSearch` (type: `integer`):

Stop each search after this many investors (15 per page, up to 40 pages).

## `scrapeInvestorDetails` (type: `boolean`):

Turn on to fetch each investor's full profile: website, contacts, socials, portfolio counts and team for firms; jobs, board seats and investing stats for angels. Billed as a detailed row.

## Actor input object example

```json
{
  "investorType": "venture_capital",
  "investorStage": "",
  "location": "san-francisco-california",
  "sort": "rank",
  "maxResultsPerSearch": 30,
  "scrapeInvestorDetails": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "investorType": "venture_capital",
    "location": "san-francisco-california",
    "maxResultsPerSearch": 30
};

// Run the Actor and wait for it to finish
const run = await client.actor("omkar-cloud/crunchbase-investors-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "investorType": "venture_capital",
    "location": "san-francisco-california",
    "maxResultsPerSearch": 30,
}

# Run the Actor and wait for it to finish
run = client.actor("omkar-cloud/crunchbase-investors-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "investorType": "venture_capital",
  "location": "san-francisco-california",
  "maxResultsPerSearch": 30
}' |
apify call omkar-cloud/crunchbase-investors-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,omkar-cloud/crunchbase-investors-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/NynX2acKInfkXyUWY/builds/4NUEmwwUPVI4CUcrV/openapi.json
