> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Crunchbase

> Crunchbase company profiles via Apify.

Crunchbase company profiles via Apify. Extract a single organization's identity, funding rounds, investors, leadership, acquisitions, and competitors from a Crunchbase URL.

1 endpoint available through Lava's AI Gateway. See the [Crunchbase API docs](https://docs.apify.com/api/v2) for full documentation.

<Info>Supports both **managed** (Lava's API keys) and **unmanaged** (bring your own credentials) mode.</Info>

## Endpoints

### Extract a single company profile from a Crunchbase URL. Pass one Crunchbase organization URL via the `url` field (singular). By default Lava returns a compact summary (\~10-15KB) containing identity, overview description, founders, current leadership, funding rounds with investors, acquisitions, top 25 competitors (slimmed), tech stack, heat/growth scores, and key employee changes, structural boilerplate (UUIDs, empty summary shells, multi-year time-series history) is stripped in the gateway. Pass `filter.mode="full"` to receive the raw \~650KB Apify payload unchanged. $0.008-$0.015 per company.

**POST** `https://api.apify.com/v2/acts/pratikdani~crunchbase-companies-scraper/run-sync-get-dataset-items` — \$0.01 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.apify.com/v2/acts/pratikdani~crunchbase-companies-scraper/run-sync-get-dataset-items', { body: {"url":"https://www.crunchbase.com/organization/openai"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.apify.com%2Fv2%2Facts%2Fpratikdani~crunchbase-companies-scraper%2Frun-sync-get-dataset-items" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"url":"https://www.crunchbase.com/organization/openai"}'
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
