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.
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.
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'
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")
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).
| Param | Type | Description |
|---|---|---|
| region | string | Filter by geographic region. |
| industry | string | Filter by industry sector. |
| search_term | string | Free-text search term to filter companies by name or description. |
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Map Soma Capital's sector concentration by counting companies per
sectorvalue. - Identify portfolio companies operating in a specific geographic
regionfor competitive analysis. - Track investment activity over time by grouping results by
year. - Find which Soma
partnerleads deals in a given industry using theindustryfilter. - Build a startup research tool that surfaces Soma-backed companies matching a keyword via
search_term. - Monitor portfolio company
statusto detect acquisitions or shutdowns across the fund. - Enrich a CRM with Soma portfolio data by matching company
websiteURLs to existing records.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 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.
Does Soma Capital have an official developer API?+
What does the `list_portfolio_companies` endpoint return for each company?+
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?+
How fresh is the portfolio data?+
Can I retrieve data for a single company by name rather than filtering the full list?+
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.