Discover/Lsvp API
live

Lsvp APIlsvp.com

Access 650+ Lightspeed Venture Partners portfolio companies with investment stage, status, year, partner, and sector via a single API endpoint.

Endpoint health
monitored
list_portfolio_companies
0/1 passing latest checkself-healing
Endpoints
1
Updated
1d ago

What is the Lsvp API?

The Lightspeed Venture Partners Portfolio API exposes data on 650+ portfolio companies through a single list_portfolio_companies endpoint. Each company record includes the company name, website, funding round, lead partner, sector classification, investment status, and year of investment. You can retrieve the full portfolio in one call or narrow results to a specific sector using the built-in filter parameter.

Try it
Filter by investment sector.
api.parse.bot/scraper/2bc450d7-b2f0-4a57-ad60-4d7dd4de58eb/<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/2bc450d7-b2f0-4a57-ad60-4d7dd4de58eb/list_portfolio_companies?sector=all' \
  -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 lsvp-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: Lightspeed portfolio SDK — list companies, filter by sector."""
from parse_apis.lsvp_com_api import Lightspeed, Sector, InvalidSector

client = Lightspeed()

# List all portfolio companies (650+), take first 5
for company in client.companies.list(limit=5):
    print(company.name, company.status, company.round, company.year)

# Filter by AI sector
ai_company = client.companies.list(sector=Sector.AI, limit=1).first()
if ai_company:
    print(f"AI company: {ai_company.name}, stage: {ai_company.round}, sector: {ai_company.sector}")

# Handle invalid sector gracefully
try:
    client.companies.list(sector=Sector.ENTERPRISE, limit=3).first()
except InvalidSector as exc:
    print(f"Invalid sector: {exc}")

print("exercised: companies.list (all), companies.list (sector filter), typed error catch")
All endpoints · 1 totalmissing one? ·

Lists all portfolio companies from Lightspeed Venture Partners. When sector is 'all' (default), returns all 650+ companies parsed from the full page. When a specific sector is provided, uses the server-side filter to return only companies in that sector (limited to first 30 results per sector due to server pagination constraints). Each company includes name, investment round/stage, status (active/ipo/acquired/exited), and year of investment. Website, partner, and sector fields are null unless sector filtering is applied (in which case sector is populated).

Input
ParamTypeDescription
sectorstringFilter by investment sector.
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of companies matching the filter",
    "companies": "array of company objects with name, website, round, partner, sector, status, and year fields",
    "sector_filter": "string indicating which sector filter was applied"
  },
  "sample": {
    "total": 657,
    "companies": [
      {
        "name": "Affirm",
        "year": "2013",
        "round": "Series B",
        "sector": null,
        "status": "ipo",
        "partner": null,
        "website": null
      },
      {
        "name": "Alloy",
        "year": "2021",
        "round": "Series C",
        "sector": null,
        "status": "active",
        "partner": null,
        "website": null
      },
      {
        "name": "Anthropic",
        "year": "2024",
        "round": "Series D",
        "sector": null,
        "status": "active",
        "partner": null,
        "website": null
      }
    ],
    "sector_filter": "all"
  }
}

About the Lsvp API

What the API Returns

The list_portfolio_companies endpoint returns a companies array where each object carries seven fields: name, website, round (investment stage such as seed, Series A, etc.), partner (the Lightspeed partner associated with the deal), sector, status (e.g. active, acquired, public, or defunct), and year of investment. The response also includes a total integer reflecting the count of matched companies and a sector_filter string confirming which filter was applied.

Filtering by Sector

The sector input parameter controls which slice of the portfolio is returned. Omitting the parameter or passing 'all' fetches the complete portfolio — all 650+ companies. Supplying a specific sector string (for example, 'enterprise' or 'consumer') applies a server-side filter and returns up to 30 matching companies. This cap on filtered results is a known limitation of the sector-specific query path, so the full-portfolio call is the right choice when completeness matters.

Practical Scope

The dataset covers Lightspeed's global portfolio as published on lsvp.com/portfolio. The year field lets you slice investments by vintage, status distinguishes active portfolio companies from exits, and round reflects the stage at which Lightspeed entered. These fields together support portfolio composition analysis, sector trend tracking, and sourcing research without any additional enrichment calls.

Reliability & maintenance

The Lsvp API is a managed, monitored endpoint for lsvp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lsvp.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 lsvp.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.

Latest check
0/1 endpoint 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 Lightspeed's sector allocation over time using the year and sector fields.
  • Identify which Lightspeed partners lead deals in a given sector via the partner field.
  • Track the share of portfolio companies that have gone public or been acquired using the status field.
  • Build a searchable directory of Lightspeed-backed startups enriched with the website field.
  • Compare investment activity by funding stage using the round field across different years.
  • Filter portfolio companies by sector to benchmark Lightspeed's focus against other VC firms.
  • Monitor new additions to the portfolio by diffing the total count across periodic API calls.
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 Lightspeed Venture Partners have an official developer API for its portfolio data?+
No. Lightspeed does not publish a public developer API for its portfolio. lsvp.com/portfolio is a standard website, and this Parse API is the structured way to access that data programmatically.
What does the `status` field contain, and does it distinguish IPOs from acquisitions?+
The status field reflects the portfolio status as shown on lsvp.com — common values include active, acquired, and public. The field does not currently break out IPO versus SPAC versus direct listing as separate statuses; it maps to the labels Lightspeed publishes. You can fork this API on Parse and revise it to add finer exit-type classification if needed.
Why are sector-filtered results limited to 30 companies when the full portfolio has 650+?+
When a specific sector is provided via the sector parameter, the query uses a server-side filter that returns only the first 30 matching results. To get complete coverage for any sector, retrieve the full portfolio by omitting the sector parameter (or passing 'all') and filter the companies array client-side by the sector field.
Does the API return individual company funding amounts or valuation data?+
Not currently. The API covers company name, website, round, partner, sector, status, and year — fields sourced from the public portfolio page. Funding amounts and valuations are not part of the lsvp.com portfolio listing. You can fork this API on Parse and revise it to add an enrichment endpoint that pulls financial data from a separate source.
How current is the portfolio data?+
The data reflects what is published on lsvp.com/portfolio at the time of each API call. Lightspeed updates its portfolio page periodically, but there is no guaranteed refresh cadence. For time-sensitive monitoring, polling the total field at regular intervals is a reasonable way to detect changes.
Page content last updated . Spec covers 1 endpoint from lsvp.com.
Related APIs in FinanceSee all →
fred.stlouisfed.org API
Access data from fred.stlouisfed.org.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
banks.data.fdic.gov API
Search FDIC-insured banks by location or institution, and access detailed information about their financial performance, merger history, deposit demographics, and regulatory changes. Get comprehensive data on bank failures, acquisitions, and historical financial trends to research institutions and analyze the banking landscape.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.