Discover/Liquid 2 API
live

Liquid 2 APIliquid2.vc

Access data on 800+ Liquid 2 Ventures portfolio companies via one API endpoint. Returns company name, website, round, sector, partner, status, and year.

Endpoint health
verified 1d ago
list_portfolio
1/1 passing latest checkself-healing
Endpoints
1
Updated
1d ago

What is the Liquid 2 API?

The Liquid 2 Ventures Portfolio API exposes data on over 800 portfolio companies through a single list_portfolio endpoint. Each response includes the company name, website URL, and structured fields covering investment round, sector, partner, status, and year. The endpoint aggregates all paginated results automatically, so a single call returns the full portfolio without requiring manual iteration.

Try it

No input parameters required.

api.parse.bot/scraper/2b55cf77-3afc-47f8-b71a-760e78a8cef2/<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/2b55cf77-3afc-47f8-b71a-760e78a8cef2/list_portfolio' \
  -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 liquid2-vc-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: Liquid 2 Ventures Portfolio SDK — list all portfolio companies."""
from parse_apis.liquid2_vc_api import Liquid2, Company, ParseError

client = Liquid2()

# List all portfolio companies (auto-paginated from the site)
for company in client.companies.list(limit=5):
    print(company.name, company.website)

# Get the first company and inspect its fields
first = client.companies.list(limit=1).first()
if first:
    print(f"Company: {first.name}")
    print(f"Website: {first.website}")
    print(f"Round: {first.round}")
    print(f"Status: {first.status}")

# Handle potential errors
try:
    for c in client.companies.list(limit=3):
        print(c.name, c.sector, c.year)
except ParseError as exc:
    print(f"Error fetching portfolio: {exc}")

print("exercised: companies.list")
All endpoints · 1 totalmissing one? ·

Lists all portfolio companies from Liquid 2 Ventures. Paginates through all pages of the portfolio grid automatically and returns aggregated results. Each company includes its name, website URL, and standardized fields (round, partner, sector, status, year) which are null when not displayed on the site.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer — total number of portfolio companies",
    "companies": "array of company objects with name, website, round, partner, sector, status, year"
  },
  "sample": {
    "data": {
      "total": 100,
      "companies": [
        {
          "name": "GitLab",
          "year": null,
          "round": null,
          "sector": null,
          "status": null,
          "partner": null,
          "website": "https://about.gitlab.com/"
        },
        {
          "name": "Rippling",
          "year": null,
          "round": null,
          "sector": null,
          "status": null,
          "partner": null,
          "website": "https://www.rippling.com/"
        },
        {
          "name": "Retool",
          "year": null,
          "round": null,
          "sector": null,
          "status": null,
          "partner": null,
          "website": "https://retool.com/"
        }
      ]
    },
    "status": "success"
  }
}

About the Liquid 2 API

What the API Returns

The list_portfolio endpoint returns a total integer and a companies array. Each object in the array contains six fields: name, website, round, partner, sector, status, and year. Fields like round, partner, sector, status, and year are standardized and returned as null when Liquid 2 Ventures has not published that detail for a given company.

Coverage and Scope

The endpoint covers the full publicly listed portfolio of Liquid 2 Ventures, a San Francisco-based seed and early-stage VC firm. The total field reflects the current count at the time of the call, which has historically exceeded 800 companies. The website field links directly to each portfolio company's domain, making it straightforward to cross-reference against other data sources.

Endpoint Behavior

The list_portfolio endpoint takes no input parameters — there is no filtering, sorting, or pagination to manage on the caller's side. The API handles traversal of the portfolio grid internally and returns an aggregated result set in one response. This keeps integration simple but means all filtering must be done client-side after the full payload is received.

Reliability & maintenanceVerified

The Liquid 2 API is a managed, monitored endpoint for liquid2.vc — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when liquid2.vc 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 liquid2.vc 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
1d ago
Latest check
1/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
  • Build a searchable directory of Liquid 2 Ventures portfolio companies filtered by sector or investment round
  • Track which partners at Liquid 2 are associated with specific portfolio companies using the partner field
  • Identify the investment year distribution across the portfolio using the year field for trend analysis
  • Enrich a CRM or deal-flow database by cross-referencing company names and website URLs from the portfolio list
  • Monitor portfolio composition changes over time by periodically calling list_portfolio and diffing results
  • Research Liquid 2's sector concentration by aggregating the sector field across all 800+ companies
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 Liquid 2 Ventures have an official developer API?+
No. Liquid 2 Ventures does not publish a public developer API for its portfolio data. This Parse API is the structured way to access that information programmatically.
What does list_portfolio return for companies that are missing details?+
The endpoint returns a company object for every firm in the portfolio regardless of data completeness. For entries where Liquid 2 has not published round, partner, sector, status, or year, those specific fields are returned as null. The name and website fields are populated whenever the company appears in the portfolio grid.
Can I filter results by sector or investment round directly in the API call?+
Not currently. The list_portfolio endpoint takes no input parameters and returns the full portfolio in one payload. Filtering by sector, round, year, or partner must be done client-side after receiving the response. You can fork this API on Parse and revise it to add server-side filtering parameters.
Does the API include portfolio company financial data such as valuations or funding amounts?+
No. The API exposes only what Liquid 2 publishes on its portfolio page: company name, website, round label, partner, sector, status, and year. Valuation, funding amount, co-investors, and founder details are not covered. You can fork this API on Parse and revise it to pull additional data by combining with other sources.
How fresh is the portfolio data?+
Each call to list_portfolio reflects the current state of the Liquid 2 Ventures public portfolio page at the time the request is made. There is no cached snapshot with a fixed date — results will include any companies that have been added to or removed from the public listing since your last call.
Page content last updated . Spec covers 1 endpoint from liquid2.vc.
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.