PitchBook Investors Scraper avatar

PitchBook Investors Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
PitchBook Investors Scraper

PitchBook Investors Scraper

Scrape public investor profile metadata from PitchBook without a subscription. Supports text search, direct profile URLs, and bulk sitemap discovery. Returns name, description, location, investor type, status, metrics, social links, and more.

Pricing

from $1.00 / 1,000 results

Rating

5.0

(7)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

7

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Extract public investor profile data from PitchBook — no subscription required. Scrape venture capital firms, private equity funds, angel investors, and more from PitchBook's database of 200,000+ publicly accessible investor profiles.

What It Does

This actor fetches investor profiles from PitchBook's public profile pages and extracts structured metadata including firm name, location, investor type, investment metrics, social links, and more. No login or PitchBook subscription needed.

Input

FieldTypeRequiredDescription
profileUrlsstring[]NoDirect PitchBook investor profile URLs or bare IDs
searchQuerystringNoText search (e.g. "venture capital Berlin")
maxItemsintegerNoMax records to return (default: 10)
proxyConfigurationobjectYesApify proxy (residential recommended — required to bypass Cloudflare)

Input mode selection:

  • If profileUrls are provided → scrape those specific profiles
  • If only searchQuery is provided → paginate search results
  • If neither is provided → bulk mode: stream from PitchBook's public sitemaps (229,000+ investors)

Example Input

{
"searchQuery": "andreessen horowitz",
"maxItems": 5
}

Direct URL Example

{
"profileUrls": [
"https://pitchbook.com/profiles/investor/11295-73",
"11295-73"
]
}

Output

One record per investor profile. Empty fields are omitted.

FieldTypeDescription
namestringInvestor/firm name
profileUrlstringPitchBook profile URL
descriptionstringFirm description
websitestringCompany website
citystringHQ city
statestringHQ state/region
countrystringHQ country
streetAddressstringStreet address
postalCodestringPostal code
yearFoundedintegerYear the firm was founded
investorStatusstringe.g. Actively Seeking New Investments
primaryInvestorTypestringe.g. Venture Capital
otherInvestorTypesstring[]Additional investor type classifications
tradeAssociationstringIndustry trade association
professionalCountintegerNumber of investment professionals
totalInvestmentsintegerTotal number of investments made
activePortfoliointegerNumber of active portfolio companies
totalExitsintegerNumber of exits
logoUrlstringFirm logo image URL
socialLinksobject{ twitter, linkedin, facebook }
scrapedAtstringISO 8601 UTC timestamp

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",
"streetAddress": "2800 Sand Hill Road",
"postalCode": "94025",
"yearFounded": 1972,
"investorStatus": "Actively Seeking New Investments",
"primaryInvestorType": "Venture Capital",
"otherInvestorTypes": ["Growth/Expansion"],
"tradeAssociation": "Indian Venture Capital Association (INVCA)",
"professionalCount": 45,
"totalInvestments": 2998,
"activePortfolio": 896,
"totalExits": 990,
"logoUrl": "https://image.pitchbook.com/3m9ATgSWiMb...",
"socialLinks": {
"facebook": "https://www.facebook.com/SequoiaCap",
"twitter": "https://twitter.com/sequoia",
"linkedin": "https://www.linkedin.com/company/sequoia"
},
"scrapedAt": "2026-04-16T12:00:00+00:00"
}

Error Record

When a profile cannot be scraped:

{
"inputUrl": "https://pitchbook.com/profiles/investor/00000-00",
"error": "Profile not found",
"scrapedAt": "2026-04-16T12:00:00+00:00"
}

FAQ

Does this require a PitchBook subscription? No. All data is extracted from PitchBook's publicly accessible investor profile pages.

What data is NOT available? AUM (assets under management), contact details (email, phone, contact name), and preferred investment criteria are behind PitchBook's paywall and are not included.

How many investors can I scrape? PitchBook's public sitemap contains ~229,000 investor profile URLs. Set maxItems up to 100,000 for large runs.

What is bulk mode? When you provide no profileUrls and no searchQuery, the actor streams investor URLs directly from PitchBook's public gzipped sitemap files.

Do I need a proxy? Yes. PitchBook uses Cloudflare protection that blocks repeated requests from the same IP. The actor defaults to Apify residential proxy, which rotates IPs automatically to bypass this. Without proxy, only 1–2 profiles can be scraped before requests are blocked.

How long does it take? Each profile takes 1–3 seconds to fetch. A run of 100 profiles takes approximately 2–5 minutes.