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

> Search through 16,000+ venture capital firms and angel investors on OpenVC. Filter by industry category (e.g., Energy, Fintech) to discover investors focused on a specific sector, then retrieve detailed profiles including firm type, investment thesis, check size, geographic focus, and portfolio companies.

**Category:** Finance & Markets | **Website:** [openvc.app/](https://openvc.app/) | **Docs:** [parse.bot/marketplace/b0390264-6be9-4ab1-8b1c-36fb684768b1/openvc-app-api](https://parse.bot/marketplace/b0390264-6be9-4ab1-8b1c-36fb684768b1/openvc-app-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-openvc-app-api-b0390264/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_energy_sector_deals

Retrieve energy sector investors with their detailed profiles. Fetches the energy-investors category list and then retrieves full profiles for the top N investors, combining themes, target countries, and team members into a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of investors to fetch detailed profiles for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-openvc-app-api-b0390264/get_energy_sector_deals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### get_investor_profile

Retrieve full details for a specific investor by slug. Returns overview metrics (investor type, first check size, lead status), investment themes, target countries, description sections, office locations, investment thesis, and team members with roles and focus areas.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Investor slug from search_investors results (URL-encoded name, e.g. 'Curiosity%20VC', 'Eclipse'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-openvc-app-api-b0390264/get_investor_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_investors

Search for investors by industry category slug. Returns a paginated list of investor summaries including name, firm type, stages, geography, check size, and thesis. Each page returns up to 20 investors. Use the slug field from results to fetch full profiles via get_investor_profile.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Investor list category slug identifying the industry vertical. |
| `page` | integer | No | Page number for pagination, starting at 1. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-openvc-app-api-b0390264/search_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```
