# Svangel — 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.

> Explore SV Angel's startup investment portfolio and discover which companies they've funded across different sectors and investment rounds. Filter the data by industry or funding stage to identify investment trends and find startups relevant to your interests.

**Category:** Finance & Markets | **Website:** [svangel.com/portfolio](https://svangel.com/portfolio) | **Docs:** [parse.bot/marketplace/3523285c-5398-41a4-8017-742ccaf815fd/svangel-com-api](https://parse.bot/marketplace/3523285c-5398-41a4-8017-742ccaf815fd/svangel-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-svangel-com-api-3523285c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_portfolio

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `round` | string | No | Filter by investment round/stage. Accepted values: Seed, Growth. Case-insensitive match. Omit to return all rounds. |
| `sector` | string | No | Filter by sector. Accepted values: AI, Consumer, Crypto, Enterprise, Fintech, Healthcare + Bio, Marketplaces. Case-insensitive match. Omit to return all sectors. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-svangel-com-api-3523285c/list_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"round":"<string>","sector":"<string>"}'
```
