Discover/Bvp API
live

Bvp APIbvp.com

Access BVP portfolio companies, team profiles, roadmaps, anti-portfolio stories, and Atlas insights via 11 structured endpoints.

Endpoint health
verified 4d ago
search_portfolio_companies
filter_companies_by_roadmap
get_company_detail
get_team_member_detail
get_anti_portfolio
11/11 passing latest checkself-healing
Endpoints
11
Updated
26d ago

What is the Bvp API?

The BVP API provides structured access to Bessemer Venture Partners' public data across 11 endpoints, covering portfolio companies, team member profiles, investment roadmaps, anti-portfolio entries, and content from their Atlas section. The get_portfolio_companies endpoint returns company objects with fields including name, description, status, website, investors, year_founded, year_partnered, and roadmaps, with optional filtering by keyword or roadmap category.

Try it
Search keyword to filter companies by name or description (case-insensitive substring match).
Roadmap category name to filter by (case-insensitive substring match against each company's roadmaps).
api.parse.bot/scraper/38e9d9d6-def4-4a80-b3b8-0289d0c9829e/<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/38e9d9d6-def4-4a80-b3b8-0289d0c9829e/get_portfolio_companies?query=cloud&roadmap=AI' \
  -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 bvp-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.

"""Walkthrough: BVP SDK — explore Bessemer's portfolio, team, and insights."""
from parse_apis.bvp_portfolio_api import BVP, RoadmapCategory, ResourceNotFound

client = BVP()

# List companies filtered by AI & ML roadmap category
for company in client.companies.filter_by_roadmap(roadmap=RoadmapCategory.AI_ML, limit=3):
    print(company.name, company.status, company.year_partnered)

# Search companies by keyword and drill into the first result
company = client.companies.search(query="shopify", limit=1).first()
if company:
    print(company.name, company.website, company.roadmaps)

# Get team members and view one member's detailed profile
member = client.teammembers.list(limit=1).first()
if member:
    profile = member.profile.get()
    print(profile.name, profile.title, profile.roadmaps)
    for link in profile.social_links[:2]:
        print(link.platform, link.url)

# Explore a roadmap page via constructible Roadmap
ai_roadmap = client.roadmap("ai")
page = ai_roadmap.page.get()
print(page.title, len(page.companies))

# Get seed program info
seed = client.seedprograms.get()
print(seed.title, seed.description)

# Typed error handling for a missing resource
try:
    bad_member = client.teammembers.list(limit=1).first()
    if bad_member:
        bad_member.profile.get()
except ResourceNotFound as exc:
    print(f"Not found: {exc}")

# Browse anti-portfolio stories
for entry in client.antiportfolioentries.list(limit=2):
    print(entry.description[:80])

print("exercised: companies.filter_by_roadmap / companies.search / teammembers.list / profile.get / roadmap.page.get / seedprograms.get / antiportfolioentries.list")
All endpoints · 11 totalmissing one? ·

Retrieve the full list of BVP portfolio companies. Supports optional client-side filtering by search keyword (matched against name or description) or roadmap category name. Returns all companies when no filters are provided. Each company includes investors, roadmap tags, and public-market status.

Input
ParamTypeDescription
querystringSearch keyword to filter companies by name or description (case-insensitive substring match).
roadmapstringRoadmap category name to filter by (case-insensitive substring match against each company's roadmaps).
Response
{
  "type": "object",
  "fields": {
    "items": "array of company objects with name, description, status, website, investors, year_founded, year_partnered, roadmaps"
  },
  "sample": {
    "data": {
      "items": [
        {
          "name": "Shopify",
          "status": "NYSE: SHOP",
          "website": "https://www.shopify.com/",
          "roadmaps": [
            "Cloud",
            "Vertical software"
          ],
          "investors": [
            {
              "url": "https://www.bvp.com/team/alex-ferrara",
              "name": "Alex Ferrara"
            }
          ],
          "description": "Shopify is a cloud-based, multi-channel commerce platform.",
          "year_founded": "2006",
          "year_partnered": "2010"
        }
      ]
    },
    "status": "success"
  }
}

About the Bvp API

Portfolio Company Data

The get_portfolio_companies endpoint returns the full BVP portfolio with two optional filters: query (case-insensitive substring match against name or description) and roadmap (matches against a company's roadmap tags). For a more targeted search, search_portfolio_companies accepts a required query string, and filter_companies_by_roadmap accepts a required roadmap string — known values include AI & ML, Biotech, Cloud, Cybersecurity, and Data. Each company object in these responses includes investors, year_founded, year_partnered, and roadmaps arrays. For richer detail on a single company, get_company_detail takes a company_slug (e.g. shopify, twilio) and returns expanded fields when the company has a full detail page.

Team and Roadmap Endpoints

get_team_members returns the full BVP team roster with name, title, slug, url, and photo for each member. Passing a member_slug to get_team_member_detail returns bio, social_links, roadmaps (focus areas), and portfolio_highlights for that person. Roadmap structure is available through list_roadmaps, which returns all sector categories with name, url, and slug. Passing a slug such as ai, consumer, or cybersecurity to get_roadmap_page returns a title, description, and the companies array associated with that roadmap landing page — note that only roadmaps with dedicated landing pages return a populated companies list.

Anti-Portfolio and Content

get_anti_portfolio returns BVP's publicly documented list of companies they passed on, where each entry contains a description field telling the story of the missed investment. The name, status, website, and investors fields are typically empty for these entries. get_discover_content surfaces recent articles and reports from the BVP Atlas section, with each item carrying title, url, date, and excerpt.

Seed Program

get_seed_program_info returns structured data about BVP's early-stage investment program: a title, a description containing program statistics, and an early_investments array highlighting seed-stage companies that reached public markets.

Reliability & maintenanceVerified

The Bvp API is a managed, monitored endpoint for bvp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bvp.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 bvp.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
11/11 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
  • Map BVP's investment thesis by pulling all companies for a given roadmap category like AI & ML or Cybersecurity via filter_companies_by_roadmap.
  • Build a timeline of BVP investments by sorting portfolio company objects on year_partnered or year_founded.
  • Research a specific partner's focus areas and portfolio highlights using get_team_member_detail with their slug.
  • Pull anti-portfolio entries from get_anti_portfolio to analyze patterns in passed investment opportunities.
  • Track BVP's published insights and reports by polling get_discover_content for new items by date.
  • Identify seed-stage exits by parsing the early_investments array returned by get_seed_program_info.
  • Cross-reference investor names from the investors field across multiple portfolio companies to identify partner deal patterns.
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 Bessemer Venture Partners offer an official developer API?+
No. BVP does not publish an official developer API or data feed. This API provides structured access to the public information available on bvp.com.
What does `get_company_detail` return compared to `get_portfolio_companies`?+
get_portfolio_companies returns a uniform set of fields for every company in the portfolio. get_company_detail takes a company_slug and fetches the individual company page, which can return additional or expanded fields when a full detail page exists. For companies whose pages use a different layout, the response falls back to name, description, and slug only.
Are company funding amounts, valuations, or deal terms available?+
Not currently. The API covers company metadata (name, description, status, website, investors, year_founded, year_partnered, roadmaps) and team/roadmap context, but does not expose funding rounds, valuations, or deal terms. You can fork this API on Parse and revise it to add an endpoint targeting any additional structured data BVP makes public.
How does roadmap filtering work, and which roadmap slugs are valid for `get_roadmap_page`?+
filter_companies_by_roadmap uses a case-insensitive substring match against the roadmaps array on each company object, so partial strings work. get_roadmap_page requires an exact slug for a landing page that exists on the site — documented examples include ai, consumer, cybersecurity, crypto-and-web3, data, and deep-tech-defense. Roadmaps without dedicated landing pages will not return a populated companies array. Use list_roadmaps to retrieve all available slugs.
Do anti-portfolio entries include company names or website URLs?+
Generally no. The get_anti_portfolio response returns entry objects where the description field contains the narrative of the missed investment, but name, website, investors, and similar fields are typically empty. The stories are identified by their descriptions rather than structured metadata. You can fork this API on Parse and revise it to extract any additional structured fields BVP adds to those entries over time.
Page content last updated . Spec covers 11 endpoints from bvp.com.
Related APIs in FinanceSee all →
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.
insightpartners.com API
Search and browse Insight Partners' portfolio companies to discover software investments, view detailed company information including sectors, descriptions, and investment status, and access social media links for each company. Filter and paginate through the portfolio to find specific companies and learn more about their backgrounds and current status.
a16z.com API
Access Andreessen Horowitz's complete portfolio of invested companies with detailed information including founders, investment stages, social media profiles, and recent announcements. Search and filter through a16z's portfolio to research companies, track investments, and discover emerging startups in their network.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
vcsheet.com API
Access investor profiles, venture funds, curated sheets, and press contacts from VCSheet.com. Supports listing, searching, and detailed profile lookups.
startups.rip API
Search and analyze data on 1,700+ Y Combinator startups, including their current status (active, acquired, or defunct), company details, and research reports organized by batch. Find similar companies, browse startups by cohort, and discover insights about YC's portfolio ecosystem.
thecompaniesapi.com API
Enrich your company database with 80+ data points per company, search by industry or company details, and discover email patterns to drive your business intelligence. Find verified company information, get pricing data, and ask contextual questions about any organization to fuel your sales, marketing, or research efforts.
ycombinator.com API
Access comprehensive data from the Y Combinator ecosystem, including company profiles, founder and partner information, job listings, and the YC library. Filter companies by batch, industry, and hiring status, and explore detailed profiles with social links, team information, and funding metadata.