Bvp APIbvp.com ↗
Access BVP portfolio companies, team profiles, roadmaps, anti-portfolio stories, and Atlas insights via 11 structured endpoints.
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.
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'
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")
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.
| Param | Type | Description |
|---|---|---|
| query | string | Search keyword to filter companies by name or description (case-insensitive substring match). |
| roadmap | string | Roadmap category name to filter by (case-insensitive substring match against each company's roadmaps). |
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Map BVP's investment thesis by pulling all companies for a given roadmap category like
AI & MLorCybersecurityviafilter_companies_by_roadmap. - Build a timeline of BVP investments by sorting portfolio company objects on
year_partneredoryear_founded. - Research a specific partner's focus areas and portfolio highlights using
get_team_member_detailwith their slug. - Pull anti-portfolio entries from
get_anti_portfolioto analyze patterns in passed investment opportunities. - Track BVP's published insights and reports by polling
get_discover_contentfor new items bydate. - Identify seed-stage exits by parsing the
early_investmentsarray returned byget_seed_program_info. - Cross-reference investor names from the
investorsfield across multiple portfolio companies to identify partner deal patterns.
| 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 | 100 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 Bessemer Venture Partners offer an official developer API?+
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?+
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?+
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.