Discover/Base10 API
live

Base10 APIbase10.vc

Access Base10 Partners portfolio company data via API. Returns company names, websites, sectors, investment years, and status for all active portfolio companies.

Endpoint health
verified 3h ago
list_companies
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the Base10 API?

The Base10 Partners API exposes 1 endpoint — list_companies — that returns the full set of active portfolio companies with 7 standardized fields per record, including company name, website URL, sector, investment round, partner, status, and year of investment. It is suited for venture research tools, competitive intelligence dashboards, and startup database aggregation pipelines that need structured access to Base10's portfolio.

Try it

No input parameters required.

api.parse.bot/scraper/fe2d6983-1d18-4a28-bd6c-d98f9f22d9c5/<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/fe2d6983-1d18-4a28-bd6c-d98f9f22d9c5/list_companies' \
  -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 base10-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: Base10 Partners Portfolio API — list and inspect portfolio companies."""
from parse_apis.base10_vc_api import Base10, ParseError

client = Base10()

# List all portfolio companies (capped for demo)
for company in client.companies.list(limit=5):
    print(company.name, company.sector, company.year)

# Grab first company and inspect its details
first = client.companies.list(limit=1).first()
if first:
    print(f"Company: {first.name}, Website: {first.website}, Status: {first.status}")

# Typed error handling
try:
    for c in client.companies.list(limit=3):
        print(c.name, c.website)
except ParseError as exc:
    print(f"Error: {exc}")

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

Lists all portfolio companies from Base10 Partners. Returns the full set of active (non-archived) companies with standardized fields including name, website URL, sector/category, investment year, and status. Results are fetched across all pages from the underlying CMS in a single call.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of companies returned",
    "companies": "array of company objects with name, website, round, partner, sector, status, year"
  },
  "sample": {
    "data": {
      "total": 151,
      "companies": [
        {
          "name": "Phonely",
          "year": "2025",
          "round": null,
          "sector": "Sales & Customer Support Automation",
          "status": "active",
          "partner": null,
          "website": "https://phonely.ai"
        },
        {
          "name": "Figma",
          "year": "2021",
          "round": null,
          "sector": "Engineering Workflow Automation",
          "status": "active",
          "partner": null,
          "website": "https://figma.com"
        },
        {
          "name": "Brex",
          "year": "2021",
          "round": null,
          "sector": "Function-in-a-Box",
          "status": "active",
          "partner": null,
          "website": "https://brex.com"
        }
      ]
    },
    "status": "success"
  }
}

About the Base10 API

What the API Returns

The list_companies endpoint returns a single response object containing a total integer and a companies array. Each element in that array includes: name (company display name), website (full URL), sector (industry category), round (investment round label), partner (associated Base10 partner), status (e.g. active), and year (year of investment). The endpoint takes no input parameters — it returns the complete active portfolio in one call.

Coverage and Scope

The data reflects Base10 Partners' publicly disclosed portfolio as maintained on their website at base10.vc/companies. Results cover non-archived companies across all investment stages present in Base10's portfolio. The year field lets you filter or sort programmatically by investment vintage, and sector enables grouping by industry vertical.

Practical Notes

Because the endpoint accepts no filters, all slicing and filtering happens on the client side after receiving the response. The total field gives you an immediate count of returned records without needing to measure the array length yourself. Fields like round and partner may be empty strings for companies where Base10 has not publicly disclosed that detail on their portfolio page.

Reliability & maintenanceVerified

The Base10 API is a managed, monitored endpoint for base10.vc — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when base10.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 base10.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
3h 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 venture capital research dashboard that maps Base10 portfolio companies by sector and investment year.
  • Aggregate portfolio data across multiple VC firms by combining the name and website fields with other fund APIs.
  • Track Base10's investment activity over time using the year field to identify vintage distribution.
  • Enrich a startup database by cross-referencing website URLs against domain-based firmographic sources.
  • Generate sector concentration reports using the sector field to group and count portfolio companies.
  • Identify which Base10 partners are most active in specific verticals using the partner and sector fields together.
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 Base10 Partners offer an official developer API?+
Base10 does not publish an official developer API or documented data endpoint. Their portfolio data is presented publicly on base10.vc/companies but is not accessible through any sanctioned programmatic interface they maintain.
What does the `list_companies` endpoint actually return per company?+
Each company object includes seven fields: name, website, round, partner, sector, status, and year. Some fields such as round or partner may be empty where Base10 has not publicly disclosed that information for a given portfolio company.
Can I filter results by sector or investment year through the API?+
The list_companies endpoint takes no input parameters — it always returns the full active portfolio. Filtering by sector, year, round, or any other field must be done client-side after receiving the response array.
Does the API include archived or exited portfolio companies?+
The current endpoint returns only active, non-archived companies. Exited or archived portfolio entries are not included in the response. You can fork this API on Parse and revise it to add an endpoint targeting archived company listings.
Does the API include financial metrics like valuation, funding amount, or headcount for portfolio companies?+
No financial metrics are included. The API covers identifying and categorical fields: name, website, sector, round label, partner, status, and year. You can fork this API on Parse and revise it to incorporate additional data sources that expose funding amounts or firmographic details.
Page content last updated . Spec covers 1 endpoint from base10.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.