# Vcsheet — 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 investor profiles, venture funds, curated sheets, and press contacts from VCSheet.com. Supports listing, searching, and detailed profile lookups.

**Category:** Finance & Markets | **Website:** [vcsheet.com/](https://vcsheet.com/) | **Docs:** [parse.bot/marketplace/729e57df-4506-44ad-ba36-e34e4ac06a33/vcsheet-com-api](https://parse.bot/marketplace/729e57df-4506-44ad-ba36-e34e4ac06a33/vcsheet-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-vcsheet-com-api-729e57df/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fund_profile

Retrieve a single fund's full profile including partners, description, investment criteria (stages, sectors, check size, location), social links, and portfolio companies. The slug is obtained from list_funds results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Fund slug from profile URL (e.g. 'boxgroup' from list_funds results). |

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

### get_investor_profile

Retrieve a single investor's full profile including fund affiliation, investment criteria (stages, sectors, check size, geography), social links, and portfolio companies. The slug is obtained from list_investors results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Investor slug from profile URL (e.g. 'claire-smilow' from list_investors results). |

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

### get_sheet_detail

Get the contents of a curated sheet including all member investors or funds. The slug is obtained from list_sheets results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Sheet slug from URL (e.g. 'ai-funds' from list_sheets results). |

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

### list_funds

List all funds with pagination. Each page returns fund summaries including name, description, sectors, stages, check sizes, geography, whether they lead rounds, and social links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/list_funds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### list_investors

List all investors with pagination. Each page returns investor summaries including name, firm affiliation, sectors, stages, check sizes, geography, and social links. Use the page parameter to advance through the full directory.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/list_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### list_reporters

List all reporters and journalists who cover venture capital and startups. Returns name, publication, location, bio, and social links for each reporter.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/list_reporters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_sheets

List all curated sheets available on VCSheet. Returns sheet names, item counts, and slugs for navigating to sheet details.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/list_sheets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_funds

Search funds by name or description on the first page of results. Performs client-side filtering against the first page of the fund directory. For broader searches, use list_funds to paginate through all pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against fund name or description. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/search_funds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_investors

Search investors by name or firm on the first page of results. Performs client-side filtering against the first page of the investor directory. For broader searches, use list_investors to paginate through all pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against investor name or firm title. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vcsheet-com-api-729e57df/search_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
