Discover/SV Angel API
live

SV Angel APIsvangel.com

Access SV Angel's full startup investment portfolio via API. Filter by sector (AI, Fintech, Crypto, etc.) or investment round (Seed, Growth). Returns company name, website, round, and sector.

Endpoint health
monitored
list_portfolio
0/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

What is the SV Angel API?

The SV Angel Portfolio API exposes one endpoint — list_portfolio — that returns all companies in SV Angel's investment portfolio, each with up to five fields including name, website, round, and sector. You can filter the full dataset by investment stage or industry sector to narrow results without any client-side processing. The response includes a total count alongside the filtered or unfiltered companies array.

Try it
Filter by investment round/stage. Accepted values: Seed, Growth. Case-insensitive match. Omit to return all rounds.
Filter by sector. Accepted values: AI, Consumer, Crypto, Enterprise, Fintech, Healthcare + Bio, Marketplaces. Case-insensitive match. Omit to return all sectors.
api.parse.bot/scraper/c5da1d34-a294-469a-be09-4ef7038f3ccc/<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/c5da1d34-a294-469a-be09-4ef7038f3ccc/list_portfolio?round=Seed&sector=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 svangel-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: SV Angel Portfolio SDK — browse and filter startup investments."""
from parse_apis.svangel_com_api import SVAngel, Sector, Round, ParseError

client = SVAngel()

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

# Filter by sector using the typed enum
ai_companies = client.companies.list(sector=Sector.AI, limit=3)
first_ai = ai_companies.first()
if first_ai:
    print(f"First AI company: {first_ai.name}, rounds: {first_ai.round}")

# Filter by investment round
try:
    growth = client.companies.list(round=Round.GROWTH, limit=3)
    for co in growth:
        print(co.name, co.round, co.sector)
except ParseError as exc:
    print(f"Portfolio unavailable: {exc}")

print("exercised: companies.list (all / sector filter / round filter)")
All endpoints · 1 totalmissing one? ·

List all portfolio companies from SV Angel's investment portfolio. Returns company name, website, investment round(s), and sector(s). Optionally filter by sector or investment round. All companies are returned in a single response. Fields partner, status, and year are not available from this source and always null.

Input
ParamTypeDescription
roundstringFilter by investment round/stage. Accepted values: Seed, Growth. Case-insensitive match. Omit to return all rounds.
sectorstringFilter by sector. Accepted values: AI, Consumer, Crypto, Enterprise, Fintech, Healthcare + Bio, Marketplaces. Case-insensitive match. Omit to return all sectors.
Response
{
  "type": "object",
  "fields": {
    "total": "integer",
    "companies": "array of company objects with name, website, round, partner, sector, status, year"
  },
  "sample": {
    "total": 151,
    "companies": [
      {
        "name": "Abridge",
        "year": null,
        "round": "Growth",
        "sector": "AI, Healthcare + Bio",
        "status": null,
        "partner": null,
        "website": "https://www.abridge.com/"
      },
      {
        "name": "Adept",
        "year": null,
        "round": "Seed, Growth",
        "sector": "AI, Enterprise",
        "status": null,
        "partner": null,
        "website": "https://www.adept.ai/"
      }
    ]
  }
}

About the SV Angel API

What the API Returns

The list_portfolio endpoint returns a flat list of every company in SV Angel's portfolio. Each object in the companies array includes the company's name, website, round (the investment stage), and sector (the industry category). A top-level total integer tells you how many records matched your query. All results are delivered in a single response — there is no pagination.

Filtering Options

Two optional query parameters let you narrow the result set. The round parameter accepts Seed or Growth (case-insensitive) to filter by investment stage. The sector parameter accepts one of seven values: AI, Consumer, Crypto, Enterprise, Fintech, Healthcare + Bio, or Marketplaces. Omitting both parameters returns every portfolio company. You can combine the two filters to retrieve, for example, Seed-stage Fintech companies.

Data Coverage and Limitations

The response fields partner, status, and year are present in the company object schema but are not populated — these three fields are not available from this source. That means you cannot determine which SV Angel partner led a deal, the current operational status of a company, or the year of investment from this API. The dataset reflects SV Angel's publicly listed portfolio at the time of the last refresh.

Reliability & maintenance

The SV Angel API is a managed, monitored endpoint for svangel.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when svangel.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 svangel.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 SV Angel's sector concentration by counting companies per sector value across the full portfolio.
  • Build a Seed-stage watchlist by filtering list_portfolio with round=Seed and collecting each company's website.
  • Compare Growth-stage portfolio density across AI, Fintech, and Enterprise sectors.
  • Generate a linkable directory of SV Angel-backed startups using name and website fields.
  • Track which sectors (e.g., Crypto vs. Healthcare + Bio) SV Angel has invested in for competitive landscape research.
  • Cross-reference portfolio companies against a job board or CrunchBase dataset using company name as a lookup key.
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 SV Angel have an official developer API?+
No. SV Angel does not publish a public developer API or data feed for their portfolio.
What does `list_portfolio` actually return for each company?+
Each company object includes name, website, round, sector, partner, status, and year. In practice, partner, status, and year are not populated — the usable fields per company are name, website, round, and sector.
Can I filter by both sector and round at the same time?+
Yes. You can pass both sector and round parameters together in a single request. For example, setting sector=Fintech and round=Seed returns only Seed-stage Fintech portfolio companies, with the total field reflecting that filtered count.
Does the API return the year SV Angel invested in each company?+
Not currently. The year field exists in the response schema but is not populated. The API covers company name, website, investment round, and sector. You can fork it on Parse and revise to add the missing endpoint if that field becomes available.
Is individual partner or deal attribution available?+
Not currently. The partner field is present in the schema but returns no data. The API covers name, website, round, and sector per company. You can fork it on Parse and revise to add partner attribution if that data becomes accessible.
Page content last updated . Spec covers 1 endpoint from svangel.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.