vcsheet.com APIvcsheet.com ↗
Access VCSheet investor profiles, VC fund details, curated sheets, and reporter contacts via API. Search, list, and retrieve full profiles with 9 endpoints.
curl -X GET 'https://api.parse.bot/scraper/c58b5336-e32d-4804-a940-6fb352ba2d2d/list_investors?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
List all investors with pagination support. Returns investor summaries including name, firm, sectors, stages, check sizes, and social links.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"has_next": "boolean, whether more pages exist",
"investors": "array of investor summary objects with name, title_firm, slug, avg_check, geography, sectors, stages, social_links"
},
"sample": {
"data": {
"page": 1,
"has_next": true,
"investors": [
{
"name": "Claire Smilow",
"slug": "claire-smilow",
"stages": "Pre-Seed, Seed, Series A",
"sectors": "Fintech, Deeptech / Hardware, Devtools, AI, Consumer",
"firm_url": "https://www.vcsheet.com/fund/boxgroup",
"avg_check": "$100K - $500K, $500K - $1M",
"firm_slug": "boxgroup",
"geography": "USA",
"title_firm": "Partner, BoxGroup",
"profile_url": "https://www.vcsheet.com/who/claire-smilow",
"social_links": {
"twitter": "https://twitter.com/clairesmilow?lang=en",
"linkedin": "https://www.linkedin.com/in/clairesmilow/"
}
}
]
},
"status": "success"
}
}About the vcsheet.com API
The VCSheet API provides 9 endpoints covering venture capital investors, funds, reporters, and curated sheets sourced from VCSheet.com. The get_investor_profile endpoint returns portfolio companies, investment criteria, and social links for individual investors, while list_funds and search_funds let you paginate or query the full fund directory. Each resource type supports both bulk listing and individual profile lookups.
Investors and Funds
The API exposes two parallel resource types: individual investors and venture funds. list_investors returns paginated summaries — including name, title_firm, avg_check, geography, sectors, stages, and social_links — with has_next to walk through all pages. get_investor_profile adds fund affiliation (name, url, slug), a portfolio array of company names, and a whats_unique field describing the investor's stated focus. The fund side mirrors this: list_funds includes leads_rounds and description in summaries, and get_fund_profile returns a partners array of named partners with their own slugs alongside the fund's full portfolio.
Search and Curated Sheets
search_investors and search_funds each accept a query string matched against names and firm/description text, returning matching summaries from the first page of results. list_sheets returns all curated collections on VCSheet with name, count, url, and slug fields. Passing a sheet slug to get_sheet_detail returns the sheet's title and a full items array of investor or fund objects depending on the sheet type — useful for themed lists like sector-specific or stage-specific groupings.
Reporters
list_reporters returns a flat array of journalists and writers who cover venture capital and startups. Each reporter object includes name, publication, location, bio, and social_links. This endpoint has no pagination and takes no input parameters, making it a straightforward single call for the full press contact list.
- Build an investor CRM by ingesting paginated
list_investorsresults and enriching records withget_investor_profileportfolio and check-size data. - Identify funds that lead rounds in a specific sector by filtering
list_fundsresults onsectorsandleads_roundsfields. - Construct a press outreach list by pulling reporter
publication,bio, andsocial_linksfromlist_reporters. - Power a fund discovery search by passing user queries to
search_fundsand displayingdescription,stages, andavg_checkin results. - Aggregate investors from themed curated collections using
list_sheetsto enumerate available sheets andget_sheet_detailto retrieve members. - Map fund partners to their individual investor profiles by combining
get_fund_profilepartner slugs withget_investor_profilecalls. - Monitor a target investor's stated focus by periodically fetching
whats_unique,sectors, andgeographyfromget_investor_profile.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does VCSheet have an official developer API?+
What does `get_investor_profile` return beyond what `list_investors` includes?+
list_investors returns summary fields: name, title_firm, slug, avg_check, geography, sectors, stages, and social_links. get_investor_profile adds the investor's affiliated fund object (with name, url, and slug), a portfolio array of notable company names, and a whats_unique string describing their stated investment focus — none of which appear in the list response.Does `search_investors` or `search_funds` support pagination or filtering by sector or stage?+
query string. They do not accept sector, stage, geography, or check-size filters, and do not support pagination. The list endpoints (list_investors, list_funds) accept a page parameter for full coverage. You can fork this API on Parse and revise it to add filtered search or multi-page search support.Are investment thesis documents, LP information, or fund financials included in fund profiles?+
get_fund_profile covers stages, sectors, avg_check_size, location, partners, portfolio company names, and a description field. LP data, AUM figures, and formal investment thesis documents are not part of the response. You can fork this API on Parse and revise it to add any additional fields that become available on VCSheet.Does `list_reporters` include all reporters, or is there a way to filter by beat or publication?+
list_reporters returns the full reporter list in a single call with no filtering parameters. Each object includes publication and bio fields that you can filter client-side by publication name or keyword. Server-side filtering by beat or publication is not currently supported. You can fork this API on Parse and revise it to add a query parameter for publication or topic filtering.