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

> Access Andreessen Horowitz's complete portfolio of invested companies with detailed information including founders, investment stages, social media profiles, and recent announcements. Search and filter through a16z's portfolio to research companies, track investments, and discover emerging startups in their network.

**Category:** Finance & Markets | **Website:** [a16z.com/portfolio/](https://a16z.com/portfolio/) | **Docs:** [parse.bot/marketplace/24be1262-2a87-4669-ab34-7083f4e2a38d/a16z-com-api](https://parse.bot/marketplace/24be1262-2a87-4669-ab34-7083f4e2a38d/a16z-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-a16z-com-api-24be1262/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_portfolio

Get all a16z portfolio companies with optional filtering by investment stage or search query. Returns the full list when no filters are provided. Filtering is client-side over a single-page dataset containing all portfolio companies. The stage filter matches case-insensitively against the company's stages array. The query filter matches case-insensitively against name, overview, and founders fields.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Search query to filter companies by name, overview, or founders. |
| `stage` | string | No | Filter by investment stage. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-a16z-com-api-24be1262/get_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","stage":"<string>"}'
```
