# Crunchbase — 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 retrieve detailed information about companies, investors, and key people to discover funding opportunities, track market competitors, and analyze investment trends. Access comprehensive profiles including organization details, investor backgrounds, and complete funding round histories all in one place.

**Category:** Business Directories | **Website:** [crunchbase.com/](https://crunchbase.com/) | **Docs:** [parse.bot/marketplace/08842cc1-b5e9-4924-9373-bb4563f58806/crunchbase-com-api](https://parse.bot/marketplace/08842cc1-b5e9-4924-9373-bb4563f58806/crunchbase-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-crunchbase-com-api-08842cc1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_funding_rounds

Get funding rounds for an organization. Returns results with funding round details including investment type, funded organization, and money raised. Requires the organization UUID from search_organizations results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results to return. |
| `org_uuid` | string | Yes | Organization UUID from search_organizations results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crunchbase-com-api-08842cc1/get_company_funding_rounds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","org_uuid":"<string>"}'
```

### get_company_people

Get people associated with an organization. Returns results with person details including job title, primary organization, rank, and location. Requires the organization UUID from search_organizations results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results to return. |
| `org_uuid` | string | Yes | Organization UUID from search_organizations results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crunchbase-com-api-08842cc1/get_company_people \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","org_uuid":"<string>"}'
```

### get_organization_profile

Fetch a single organization's full profile by its slug (permalink). Returns the organization's properties including categories, location, employee count, rank, and funding status. The slug is the identifier.permalink value from search_organizations results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Organization permalink/slug (e.g. 'stripe', 'google', 'anthropic'). |

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

### search_investors

Full-text search over Crunchbase investors. Returns results with investor details including number of investments, exits, location, and investor type. Omitting query returns all investors ordered by rank.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results to return. |
| `query` | string | No | Search keyword for investor name (e.g. 'sequoia', 'andreessen'). Omitting returns all investors. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crunchbase-com-api-08842cc1/search_investors \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```

### search_organizations

Full-text search over Crunchbase organizations. Returns results with organization details including categories, location, employee count, rank, and operating status. Omitting query returns all organizations ordered by rank.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max results to return. |
| `query` | string | No | Search keyword for organization name (e.g. 'stripe', 'google'). Omitting returns all organizations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crunchbase-com-api-08842cc1/search_organizations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
