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

> Monitor the investment landscape by accessing detailed information about Nexus Venture Partners' portfolio companies, including their sectors, websites, founding years, and investment partners. Track portfolio status and growth across their complete venture portfolio to stay informed on their strategic investments and sector focus.

**Category:** Finance & Markets | **Website:** [nexusvp.com/companies/](https://nexusvp.com/companies/) | **Docs:** [parse.bot/marketplace/7dba32c5-7be3-48de-a1bf-d72d4a91e240/nexusvp-com-api](https://parse.bot/marketplace/7dba32c5-7be3-48de-a1bf-d72d4a91e240/nexusvp-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-nexusvp-com-api-7dba32c5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_companies

List all portfolio companies from Nexus Venture Partners. Returns the full portfolio grid with standardized fields for each company. Optionally filter by sector, location, or status. Results are returned in a single page containing all matching companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Filter by company location. Accepted values: U.S., India. |
| `sector` | string | No | Filter by sector/category. Matches against company tags. Accepted values: A.I., Consumer, Enterprise, Fintech, Open Source, Healthcare, Data & AI, Business Services. |
| `status` | string | No | Filter by company status. Accepted values: active, exited, ipo. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nexusvp-com-api-7dba32c5/list_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","sector":"<string>","status":"<string>"}'
```
