# Insight Partners — 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 and browse Insight Partners' portfolio companies to discover software investments, view detailed company information including sectors, descriptions, and investment status, and access social media links for each company. Filter and paginate through the portfolio to find specific companies and learn more about their backgrounds and current status.

**Category:** Finance & Markets | **Website:** [www.insightpartners.com/portfolio/](https://www.insightpartners.com/portfolio/) | **Docs:** [parse.bot/marketplace/2338f6a1-3c18-4ada-bf41-416a8267d00e/insightpartners-com-api](https://parse.bot/marketplace/2338f6a1-3c18-4ada-bf41-416a8267d00e/insightpartners-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-insightpartners-com-api-2338f6a1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_detail

Get detailed information for a specific portfolio company including description, sectors, investment status, website, and social links. Requires a company_id obtained from get_portfolio results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | integer | Yes | Company ID obtained from get_portfolio results (companies[*].id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insightpartners-com-api-2338f6a1/get_company_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<integer>"}'
```

### get_portfolio

Get Insight Partners portfolio companies with basic info. Supports search filtering by company name, pagination (12 companies per page), and result limiting. When page is 0 or omitted, fetches all pages. Returns company IDs, names, locations, verticals, and logo URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of companies to return. If 0 or omitted, returns all. |
| `page` | integer | No | Specific page number to fetch (12 companies per page). If 0 or omitted, fetches all pages. |
| `search` | string | No | Search query to filter companies by name. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insightpartners-com-api-2338f6a1/get_portfolio \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","search":"<string>"}'
```
