# General Catalyst — 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.

> Get instant access to General Catalyst's portfolio companies with detailed information like investment stages, sectors, and company profiles. Search and explore specific companies within their investment portfolio to discover opportunities, track investments, or research their focus areas.

**Category:** Finance & Markets | **Website:** [www.generalcatalyst.com/portfolio](https://www.generalcatalyst.com/portfolio) | **Docs:** [parse.bot/marketplace/a80def17-7dd3-46cf-8abf-2519198bed3f/generalcatalyst-com-api](https://parse.bot/marketplace/a80def17-7dd3-46cf-8abf-2519198bed3f/generalcatalyst-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-generalcatalyst-com-api-a80def17/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company

Get detailed information about a specific portfolio company including its website URL, LinkedIn, Twitter/X links, description, industry, region, year backed, and investors. The slug is available from the list_portfolio endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug from the URL path (e.g. 'anthropic', 'stripe', 'anduril'). Available in list_portfolio results. |

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

### list_portfolio

List all portfolio companies from General Catalyst's portfolio page. Returns company names, investment stage (Seed, Creation, Customer Value Fund, Venture, IPO, Acquired), sector, and location. When called without a page parameter, fetches and aggregates all pages (~591 companies). When called with a specific page, returns that page only (100 companies per page, up to 6 pages).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-6) to fetch a specific page of 100 companies. When 0 or omitted, all pages are fetched and aggregated. |

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