Discover/VCSheet API
live

VCSheet 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.

Endpoint health
verified 4d ago
list_sheets
list_investors
get_fund_profile
get_sheet_detail
list_reporters
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the VCSheet 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.

Try it
Page number for pagination.
api.parse.bot/scraper/c58b5336-e32d-4804-a940-6fb352ba2d2d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c58b5336-e32d-4804-a940-6fb352ba2d2d/list_investors?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace vcsheet-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.vcsheet_api import VCSheet, InvestorSummary, FundSummary, Investor, Fund, Sheet, Reporter, ResourceNotFound

vcsheet = VCSheet()

# List investor summaries from the directory
for investor in vcsheet.investorsummaries.list(limit=5):
    print(investor.name, investor.slug, investor.avg_check)

# Get full investor profile from a summary
first_investor = vcsheet.investorsummaries.search(query="Claire", limit=1)
for summary in first_investor:
    full_profile = summary.details()
    print(full_profile.name, full_profile.whats_unique)
    print(full_profile.details.avg_check, full_profile.details.stages_their_fund_invests_in)

# Search for investors by keyword
for match in vcsheet.investorsummaries.search(query="deeptech"):
    print(match.name, match.title_firm, match.stages)

# List and browse fund summaries
for fund in vcsheet.fundsummaries.list(limit=3):
    print(fund.name, fund.slug, fund.leads_rounds)

# Get detailed fund profile from summary
for fs in vcsheet.fundsummaries.search(query="AI", limit=1):
    full_fund = fs.details()
    print(full_fund.name, full_fund.description)
    print(full_fund.details.stages_they_invest_in, full_fund.details.avg_check_size)

# List curated sheets
for sheet in vcsheet.sheets.list(limit=5):
    print(sheet.name, sheet.count, sheet.slug)

# Get sheet detail
sheet_detail = vcsheet.sheets.get(slug="ai-funds")
print(sheet_detail.title)

# List reporters
for reporter in vcsheet.reporters.list(limit=3):
    print(reporter.name, reporter.publication, reporter.location)
All endpoints · 9 totalmissing one? ·

List all investors with pagination. Each page returns investor summaries including name, firm affiliation, sectors, stages, check sizes, geography, and social links. Use the page parameter to advance through the full directory.

Input
ParamTypeDescription
pageintegerPage number for pagination.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "has_next": "boolean, whether more pages exist",
    "investors": "array of investor summary objects"
  },
  "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 API

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.

Reliability & maintenanceVerified

The VCSheet API is a managed, monitored endpoint for vcsheet.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vcsheet.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official vcsheet.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
9/9 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an investor CRM by ingesting paginated list_investors results and enriching records with get_investor_profile portfolio and check-size data.
  • Identify funds that lead rounds in a specific sector by filtering list_funds results on sectors and leads_rounds fields.
  • Construct a press outreach list by pulling reporter publication, bio, and social_links from list_reporters.
  • Power a fund discovery search by passing user queries to search_funds and displaying description, stages, and avg_check in results.
  • Aggregate investors from themed curated collections using list_sheets to enumerate available sheets and get_sheet_detail to retrieve members.
  • Map fund partners to their individual investor profiles by combining get_fund_profile partner slugs with get_investor_profile calls.
  • Monitor a target investor's stated focus by periodically fetching whats_unique, sectors, and geography from get_investor_profile.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does VCSheet have an official developer API?+
VCSheet does not publish an official developer API or documented public endpoints for programmatic access to its data.
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?+
Both search endpoints return only the first page of matches for a given 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?+
Not currently. 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.
Page content last updated . Spec covers 9 endpoints from vcsheet.com.
Related APIs in FinanceSee all →
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
openvc.app API
Search through 16,000+ venture capital firms and angel investors on OpenVC. Filter by industry category (e.g., Energy, Fintech) to discover investors focused on a specific sector, then retrieve detailed profiles including firm type, investment thesis, check size, geographic focus, and portfolio companies.
baincapitalventures.com API
Access detailed information about Bain Capital Ventures' portfolio companies, investment team members, and focus domains, while discovering recent investments, founder stories, and investment insights. Learn about their early-stage funding approach and review case studies to understand their investment strategy and portfolio composition.
mercury.com API
Search and filter 295+ startup investors by investment preferences, check sizes, industries, and stages to find the right funding match for your company. Access detailed contact information and investment criteria for VCs, angels, and seed funds to streamline your fundraising outreach.
bvp.com API
Explore Bessemer Venture Partners' investment portfolio, discover portfolio companies by roadmap and growth stage, and access insights from their team and seed program. Search company details, view anti-portfolio decisions, and browse curated content to understand BVP's investment thesis and strategy.
crunchbase.com API
Search and retrieve detailed information about companies, investors, and key people to discover funding opportunities, track market competitors, and analyze investment trends. Access comprehensive profiles including organization details, investor backgrounds, and complete funding round histories all in one place.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.