PitchBook Investors Scraper
OTHERDEVELOPER TOOLSLEAD GENERATION
PitchBook Investors Scraper
Scrape public investor profile metadata from PitchBook without a subscription. Returns firm name, description, location, investor type, investment metrics, social links, and more for venture capital firms, private equity funds, angel investors, and other institutional investors.
Features
- Three input modes: Direct profile URLs, text search query, or bulk sitemap discovery (229k+ profiles)
- No subscription required: Accesses publicly available investor profile pages
- Rich structured output: 20+ fields per investor including metrics, location, social links
- Cloudflare bypass: Handles PitchBook's anti-bot protection automatically
Input
| Field | Type | Required | Description |
|---|---|---|---|
profileUrls |
string[] | No | Direct PitchBook investor profile URLs or bare IDs (e.g. 11295-73) |
searchQuery |
string | No | Text search (e.g. "venture capital Berlin") — uses search mode |
maxItems |
integer | Yes | Maximum number of records to return |
Input modes:
- If
profileUrlsis provided → scrape those specific profiles - If only
searchQueryis provided → paginate search results - If neither is provided → bulk mode: stream from PitchBook's public sitemaps
Example Input
{
"profileUrls": ["https://pitchbook.com/profiles/investor/11295-73"],
"maxItems": 10
}
Output
One record per investor profile. Empty fields are omitted.
| Field | Type | Description |
|---|---|---|
name |
string | Investor or firm name |
profileUrl |
string | PitchBook profile URL |
description |
string | Firm or investor description |
website |
string | Company website URL |
city |
string | Headquarters city |
state |
string | Headquarters state or region |
country |
string | Headquarters country |
streetAddress |
string | Street address |
postalCode |
string | Postal code |
yearFounded |
integer | Year the firm was founded |
investorStatus |
string | Investor status (e.g. Actively Seeking New Investments) |
primaryInvestorType |
string | Primary investor type (e.g. Venture Capital) |
otherInvestorTypes |
string | Additional investor type classifications (comma-separated) |
tradeAssociation |
string | Industry trade association |
professionalCount |
integer | Number of investment professionals |
totalInvestments |
integer | Total number of investments made |
activePortfolio |
integer | Number of active portfolio companies |
totalExits |
integer | Number of exits |
logoUrl |
string | Firm logo image URL |
socialLinks |
string | Social links as JSON string (twitter, linkedin, facebook) |
scrapedAt |
string | ISO 8601 UTC timestamp when this record was scraped |
Example Output
{
"name": "Sequoia Capital",
"profileUrl": "https://pitchbook.com/profiles/investor/11295-73",
"description": "Founded in 1972, Sequoia Capital is a venture capital investment firm based in Menlo Park, California.",
"website": "https://sequoiacap.com",
"city": "Menlo Park",
"state": "California",
"country": "United States",
"yearFounded": 1972,
"investorStatus": "Actively Seeking New Investments",
"primaryInvestorType": "Venture Capital",
"professionalCount": 45,
"totalInvestments": 2998,
"activePortfolio": 896,
"totalExits": 990,
"scrapedAt": "2026-06-07T17:00:00.000Z"
}
Notes
- PitchBook's robots.txt disallows
/profiles/searchand/searchendpoints. When usingsearchQuerymode, you accept responsibility for compliance with robots.txt. - Individual profile pages (
/profiles/investor/*) are not disallowed by robots.txt. - Bulk sitemap mode streams from PitchBook's public sitemaps (compliant).
- Residential proxy is required to bypass Cloudflare protection — included in the actor cost.