Discover/Somacap API
live

Somacap APIsomacap.com

Access Soma Capital's full portfolio via API. Filter by sector, region, or search term. Returns company name, website, round, partner, sector, status, and year.

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

What is the Somacap API?

The Soma Capital Portfolio API exposes the complete list of companies funded by Soma Capital through a single endpoint, list_portfolio_companies, returning up to 7 fields per company including name, website, sector, investment round, partner, status, and year. The endpoint handles pagination automatically so every portfolio entry is returned in one call, with optional filters for industry sector, geographic region, and free-text search.

Try it
Filter by geographic region.
Filter by industry sector.
Free-text search term to filter companies by name or description.
api.parse.bot/scraper/b7c07626-27f8-4632-accc-da27e077101f/<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/b7c07626-27f8-4632-accc-da27e077101f/list_portfolio_companies?region=NYC&industry=B2B+%2F+SaaS&search_term=Ramp' \
  -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 somacap-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: Soma Capital Portfolio SDK — browse and filter portfolio companies."""
from parse_apis.somacap_com_api import SomaCap, Industry, Region, PortfolioLoadError

client = SomaCap()

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

# Filter by industry and region
ai_company = client.companies.list(industry=Industry.AI, region=Region.SF, limit=1).first()
if ai_company:
    print(f"AI in SF: {ai_company.name} — {ai_company.website}")

# Search by name
try:
    result = client.companies.list(search_term="Ramp", limit=1).first()
    if result:
        print(f"Found: {result.name}, sector={result.sector}, website={result.website}")
except PortfolioLoadError as exc:
    print(f"Portfolio load failed: {exc}")

print("exercised: companies.list / filter by Industry+Region / search by name")
All endpoints · 1 totalmissing one? ·

Lists all portfolio companies from Soma Capital. Paginates through all pages automatically, returning every company in the portfolio. Supports filtering by industry sector, geographic region, and free-text search. Each company includes name, website URL, and primary sector. Fields round, partner, status, and year are included for schema completeness but are not provided by this data source (always null).

Input
ParamTypeDescription
regionstringFilter by geographic region.
industrystringFilter by industry sector.
search_termstringFree-text search term to filter companies by name or description.
Response
{
  "type": "object",
  "fields": {
    "total": "integer - total number of companies returned",
    "companies": "array of company objects with name, website, round, partner, sector, status, year"
  },
  "sample": {
    "total": 877,
    "companies": [
      {
        "name": "Ramp",
        "year": null,
        "round": null,
        "sector": "FinTech",
        "status": null,
        "partner": null,
        "website": "https://www.ramp.com"
      },
      {
        "name": "Deel",
        "year": null,
        "round": null,
        "sector": "B2B / SaaS",
        "status": null,
        "partner": null,
        "website": "https://www.deel.com"
      }
    ]
  }
}

About the Somacap API

What the API Returns

The list_portfolio_companies endpoint returns the full Soma Capital portfolio as an array of company objects. Each object includes name, website, sector, round, partner, status, and year. The response also includes a total field indicating how many companies matched the query. All pages of the portfolio are fetched and merged automatically — you receive a single flat list rather than having to manage pagination yourself.

Filtering Options

Three optional parameters let you narrow results before they are returned. Pass industry to restrict results to a specific sector (for example, fintech or healthcare). Pass region to filter by geographic area. Pass search_term for a free-text match against company names or descriptions. These parameters can be combined: you can query for B2B software companies in a specific region in a single request.

Response Shape and Coverage

Beyond name and website, each company record carries round (the investment round Soma participated in), partner (the Soma partner associated with the investment), status (active, acquired, etc.), and year (the year of investment). These fields make the dataset useful for tracking cohort composition, partner deal flow, and sector concentration over time.

Reliability & maintenanceVerified

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

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
  • Map Soma Capital's sector concentration by counting companies per sector value.
  • Identify portfolio companies operating in a specific geographic region for competitive analysis.
  • Track investment activity over time by grouping results by year.
  • Find which Soma partner leads deals in a given industry using the industry filter.
  • Build a startup research tool that surfaces Soma-backed companies matching a keyword via search_term.
  • Monitor portfolio company status to detect acquisitions or shutdowns across the fund.
  • Enrich a CRM with Soma portfolio data by matching company website URLs to existing records.
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 Soma Capital have an official developer API?+
No. Soma Capital does not publish an official developer API or data feed for its portfolio. This Parse API is the programmatic way to access that data.
What does the `list_portfolio_companies` endpoint return for each company?+
Each company object includes name, website, sector, round, partner, status, and year. The top-level response also returns total, the count of companies matching your query. Filtering by industry, region, or search_term reduces both the array and the total.
Does the API return founding team members, founder LinkedIn profiles, or funding amounts?+
Not currently. The API covers name, website, sector, round, partner, status, and year. It does not include founder details, LinkedIn URLs, or disclosed funding dollar amounts. You can fork this API on Parse and revise it to add an endpoint that retrieves those details from individual company pages if they are publicly available.
How fresh is the portfolio data?+
The data reflects what is publicly listed on the Soma Capital portfolio page at the time of each API call. Soma updates its portfolio page periodically; newly announced investments or status changes will appear once the source page is updated.
Can I retrieve data for a single company by name rather than filtering the full list?+
There is no single-company lookup endpoint currently. The API offers one endpoint, list_portfolio_companies, which returns the full portfolio and supports narrowing via search_term, industry, and region. You can fork this API on Parse and revise it to add a dedicated single-company detail endpoint.
Page content last updated . Spec covers 1 endpoint from somacap.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.
Soma Capital Portfolio API – Company Data · Parse