PitchBook Fund Data Scraper avatar

PitchBook Fund Data Scraper

Pricing

Pay per event

Go to Apify Store
PitchBook Fund Data Scraper

PitchBook Fund Data Scraper

Extract public PitchBook fund profiles into structured strategy, size, vintage, manager, domicile, activity-count, and source data for screening and due diligence.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Stas Persiianenko

Stas Persiianenko

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Extract structured public fund metadata from PitchBook fund profile URLs or IDs. The Actor returns fund identity, strategy, status, size, vintage, manager, category, domicile, public activity counts, manager location, and canonical source links without requiring PitchBook credentials.

Use it to turn a fund watchlist into an integration-ready dataset for screening, due diligence, market mapping, CRM enrichment, or periodic refreshes.

What does PitchBook Fund Data Scraper do?

The Actor visits the public PitchBook profile for each supplied fund and extracts the useful information visible to an anonymous visitor.

It supports:

  • full PitchBook fund profile URLs;
  • bare fund IDs such as 11295-73F;
  • mixed URL and ID batches;
  • automatic normalization and deduplication;
  • bounded retries with fresh proxy sessions;
  • structured error rows for inputs that cannot be extracted;
  • JSON, CSV, Excel, XML, RSS, and API exports through the Apify dataset.

V1 intentionally focuses on direct fund profiles. It does not claim keyword search or whole-sitemap discovery.

Who is this PitchBook fund scraper for?

  • Private-equity and venture-capital analysts screening known funds.
  • Allocators and fund researchers refreshing manager and fund watchlists.
  • Due-diligence and KYB teams collecting public identity and location evidence.
  • Data vendors normalizing fund profiles into repeatable feeds.
  • Business-development teams enriching private-market account lists.
  • Developers and AI agents that need typed fund data instead of rendered HTML.

Why use this Actor?

PitchBook fund pages are protected against basic HTTP clients. This Actor uses a conservative browser workflow with Residential proxy sessions, blocks unnecessary media, retries transient challenges, and normalizes the page into stable field names.

The workflow is designed around practical safeguards:

  1. only valid PitchBook fund URLs and IDs are accepted;
  2. duplicate profiles are fetched once;
  3. each successful profile is charged once;
  4. failed profiles produce uncharged error rows;
  5. all-failed runs return a failed status instead of silently succeeding with no data;
  6. concurrency stays conservative to reduce blocking and wasted proxy traffic.

What fund data can I extract?

FieldMeaning
recordTypefund for successful profiles or error for failed inputs
namePublic fund name
profileUrlCanonical PitchBook fund profile URL
descriptionPublic fund description
logoUrlPublic fund or manager logo URL when exposed
fundStrategyStrategy such as Buyout or Venture Capital
fundStatusLifecycle status such as Active or Liquidated
fundSizeDisplayed committed capital
vintageYearFund vintage year
fundCategoryAsset class or category
fundFamilyFund family name
fundManagerManaging firm
fundManagerUrlPitchBook manager profile URL
fundManagerWebsitePublic manager website
fundDomicilesDisplayed domicile
nativeCurrencyReporting currency
totalInvestmentsPublic investment count
totalLimitedPartnersPublic limited-partner count
streetAddressManager street address
postalCodeManager postal code
cityManager city
stateManager state or region
countryManager or domicile country
scrapedAtUTC extraction timestamp

PitchBook does not expose every field for every profile. Missing public values are omitted rather than invented.

How much does it cost to extract PitchBook fund profiles?

Pricing has two Actor events:

  • Start: $0.005 once per run.
  • Fund profile: $0.024031 per successful profile on the Free plan, with strictly lower per-profile rates on higher Apify plans.

Error rows have no separate profile charge. Apify platform usage and Residential proxy traffic may also apply as shown by the Console before and during a run.

Illustrative Free-plan Actor-event totals:

Free-plan Actor-event examples use the formula start + successful profiles × fund profile: one profile is $0.005 + $0.024031, ten profiles are $0.005 + (10 × $0.024031), and one hundred profiles are $0.005 + (100 × $0.024031).

Retries and failures can vary platform/proxy usage, so treat these as event formulas rather than a guarantee of the final run total.

Getting started

  1. Open the Actor input page.
  2. Add one or more PitchBook fund profile URLs or bare IDs.
  3. Keep the default Residential proxy configuration for reliable access.
  4. Set maxItems to cap how many unique inputs are processed.
  5. Run the Actor.
  6. Open the Dataset tab to inspect or export fund and error rows.

A working input:

{
"profileUrls": [
"11295-73F",
"https://pitchbook.com/profiles/fund/11342-89F"
],
"maxItems": 2
}

Input parameters

profileUrls

Required list of PitchBook fund profile URLs or bare fund IDs.

Accepted forms:

11295-73F
https://pitchbook.com/profiles/fund/11295-73F
https://www.pitchbook.com/profiles/fund/11295-73F/

Company, investor, person, and non-PitchBook URLs are rejected before the browser starts.

maxItems

Maximum number of unique normalized profiles to process. Default: 100. Range: 1 to 1000.

proxyConfiguration

Apify proxy settings. The prefilled configuration uses the RESIDENTIAL group. Direct and basic HTTP requests are commonly challenged by PitchBook, so changing to no proxy or an unsuitable group can reduce reliability.

maxRetries

Fresh-session retries after a challenge, timeout, or transient navigation failure. Default: 2. Range: 0 to 5.

requestTimeoutSecs

Maximum navigation/extraction wait for each attempt. Default: 60. Range: 15 to 180 seconds.

Output example

A real profile currently produces a record shaped like this:

{
"recordType": "fund",
"name": "Thomas H. Lee Equity Partners V",
"profileUrl": "https://pitchbook.com/profiles/fund/11295-73F",
"description": "Thomas H. Lee Equity Partners V was a 2000 vintage buyout fund managed by Thomas H. Lee Partners.",
"fundStrategy": "Buyout",
"fundStatus": "Liquidated",
"fundSize": "$6.11B",
"vintageYear": 2000,
"fundCategory": "Private Equity",
"fundFamily": "Thomas H. Lee Equity Partners",
"fundManager": "Thomas H. Lee Partners",
"fundManagerWebsite": "https://www.thl.com/",
"fundDomiciles": "United States",
"nativeCurrency": "USD",
"totalInvestments": 24,
"totalLimitedPartners": 134,
"city": "Boston",
"state": "Massachusetts",
"country": "United States",
"scrapedAt": "2026-01-15T12:00:00.000Z"
}

The live source can change after this example is written.

Error rows and failure behavior

An individual profile that exhausts retries produces:

{
"recordType": "error",
"inputUrl": "https://pitchbook.com/profiles/fund/12345-67F",
"error": "Profile request timed out after all retries",
"scrapedAt": "2026-01-15T12:00:00.000Z"
}

Error rows are not charged as successful fund profiles. If at least one fund succeeds, the run can complete with error rows for the remaining inputs. If every input fails, the Actor exits with a failed status so automations do not mistake an empty result for success.

Tips for reliable fund extraction

  • Keep the default Residential proxy unless you have tested another compatible proxy.
  • Batch related profiles instead of launching one run per URL; this spreads the start fee.
  • Use canonical fund IDs ending in F, not investor IDs.
  • Leave retry count at 2 for ordinary work.
  • Increase the timeout before increasing retries when the site is responding slowly.
  • Inspect recordType in downstream workflows.
  • Schedule refreshes at a reasonable cadence; public fund data does not require minute-by-minute polling.

Limits and unavailable data

This Actor extracts only public anonymous profile content.

It does not bypass a login or return subscription-only metrics such as private performance data, complete LP commitments, confidential contacts, fund terms, or non-public returns. It does not accept PitchBook credentials or cookies.

Direct profile input is the supported v1 scope. Keyword search, bulk sitemap crawling, and discovery by strategy or geography are not currently supported.

Source layout and anti-bot behavior can change. Per-record error output makes such changes visible to your pipeline.

Fund screening workflow

A common screening pipeline is:

  1. export known PitchBook fund URLs from your internal watchlist;
  2. run this Actor in a bounded batch;
  3. filter dataset rows to recordType = fund;
  4. compare strategy, status, vintage, size, and domicile;
  5. join records to your internal manager identifiers using fundManagerUrl;
  6. route error rows to a retry or review queue;
  7. store scrapedAt as the freshness marker.

Due-diligence and KYB workflow

Use the Actor to collect public source evidence before deeper review:

  • canonical fund identity;
  • manager identity and public website;
  • manager address and geography;
  • category, strategy, size, status, and vintage;
  • direct profile URL for source attribution;
  • extraction timestamp for audit trails.

Always corroborate material investment or compliance decisions with authoritative records.

Export and integration options

Apify datasets support:

  • JSON and JSONL for data pipelines;
  • CSV and Excel for analyst review;
  • XML and RSS for compatible tools;
  • REST API retrieval;
  • webhooks after successful or failed runs;
  • Zapier, Make, Google Sheets, cloud storage, and custom integrations.

Use profileUrl as the stable source key and recordType to separate usable records from operational errors.

Run with the Apify API using cURL

curl -X POST \
"https://api.apify.com/v2/acts/automation-lab~pitchbook-fund-data-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"profileUrls": ["11295-73F"],
"maxItems": 1
}'

Wait for the run or use the synchronous dataset endpoint when your client can tolerate the request duration.

Run with JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/pitchbook-fund-data-scraper').call({
profileUrls: ['11295-73F'],
maxItems: 1,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Run with Python

import os
from apify_client import ApifyClient
client = ApifyClient(os.environ['APIFY_TOKEN'])
run = client.actor('automation-lab/pitchbook-fund-data-scraper').call(run_input={
'profileUrls': ['11295-73F'],
'maxItems': 1,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
print(items)

Use with Apify MCP

Claude Code

Add this Actor to Claude Code:

claude mcp add --transport http apify \
"https://mcp.apify.com?tools=automation-lab/pitchbook-fund-data-scraper"

Claude Desktop, Cursor, and VS Code

Use the same HTTP MCP server in Claude Desktop, Cursor, or VS Code:

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com?tools=automation-lab/pitchbook-fund-data-scraper"
}
}
}

Example prompts:

  • “Extract public fund details for PitchBook fund ID 11295-73F.”
  • “Compare these three PitchBook fund URLs by strategy, vintage, size, status, and domicile.”
  • “Refresh this fund watchlist and return successful records separately from errors.”

Use the Actor only for lawful purposes and public data you are entitled to process. Follow applicable privacy, database, intellectual-property, and contract rules. Respect PitchBook's terms and avoid excessive request volumes.

The Actor is an independent automation tool and is not affiliated with, endorsed by, or sponsored by PitchBook. PitchBook is a trademark of its respective owner.

Do not use the output as the sole basis for investment, credit, compliance, or legal decisions.

FAQ and troubleshooting

Why did I receive an error row?

The profile may be invalid, removed, challenged, or temporarily unavailable. Confirm that it is a fund URL under /profiles/fund/, keep Residential proxy enabled, and retry later if the error is transient.

Why did the whole run fail?

The Actor fails when every requested profile fails. This is intentional: downstream automations should not interpret zero useful records as a successful refresh.

Why are some fields missing?

PitchBook exposes different public fields by profile. Missing fields are omitted rather than guessed. Subscription-only content is outside the Actor's scope.

Can I pass investor or company profiles?

No. V1 validates and accepts fund profiles only. This keeps the schema and buyer workflow precise.

Does maxItems override the URL list?

Yes. After URL normalization and deduplication, only the first maxItems profiles are processed.

Are retries charged as profiles?

No. The fund event is emitted only after a valid fund record is extracted. Proxy and platform usage can still accrue during failed attempts.

  • Company Funding Tracker — discover and monitor public SEC Form D fundraising filings before enriching known funds and managers.

Support

For reproducible problems, open an Actor issue with:

  • the affected public fund URL or ID;
  • the run link;
  • whether the default Residential proxy was enabled;
  • the relevant error row;
  • the approximate time of the failure.

Do not include private credentials, cookies, or subscription-only data.