# Somacap — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> View Soma Capital's complete portfolio of invested companies with details like their names, websites, business sectors, and geographic locations. Quickly discover which companies Soma Capital has funded and learn about their industries and regions of operation.

**Category:** Finance & Markets | **Website:** [somacap.com/portfolio](https://somacap.com/portfolio) | **Docs:** [parse.bot/marketplace/e3fe4621-b0f8-4c6b-935c-a62c89e02514/somacap-com-api](https://parse.bot/marketplace/e3fe4621-b0f8-4c6b-935c-a62c89e02514/somacap-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-somacap-com-api-e3fe4621/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_portfolio_companies

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).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `industry` | string | No | Filter by industry sector. |
| `region` | string | No | Filter by geographic region. |
| `search_term` | string | No | Free-text search term to filter companies by name or description. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-somacap-com-api-e3fe4621/list_portfolio_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"industry":"<string>","region":"<string>","search_term":"<string>"}'
```
