> ## 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.

# People Data Labs

> Person and company data enrichment API providing professional profiles, employment history, contact information, and company firmographics from a 3B+ record dataset.

Person and company data enrichment API providing professional profiles, employment history, contact information, and company firmographics from a 3B+ record dataset. Best for lead enrichment, identity resolution, and building comprehensive profiles from partial data (email, name, company). Unlike Apollo (sales-focused prospecting), People Data Labs emphasizes raw data enrichment and identity matching at scale.

4 endpoints available through Lava's AI Gateway. See the [People Data Labs API docs](https://docs.peopledatalabs.com/docs/intro) for full documentation.

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

## Endpoints

### Enrich person by email or other identifiers

**POST** `https://api.peopledatalabs.com/v5/person/enrich` — \$0.05 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.peopledatalabs.com/v5/person/enrich', {
      body: {
    "profile": "https://www.linkedin.com/in/mitchell-jones-333559a2/"
    },
    });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fperson%2Fenrich" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"profile":"https://www.linkedin.com/in/mitchell-jones-333559a2/"}'
    ```
  </Tab>
</Tabs>

### Search people

**POST** `https://api.peopledatalabs.com/v5/person/search` — \$0.05 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.peopledatalabs.com/v5/person/search', {
      body: {
    "sql": "SELECT * FROM person WHERE location_country='united states'"
    },
    });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fperson%2Fsearch" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"sql":"SELECT * FROM person WHERE location_country='\''united states'\''"}'
    ```
  </Tab>
</Tabs>

### Enrich company by name or domain

**POST** `https://api.peopledatalabs.com/v5/company/enrich` — \$0.05 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.peopledatalabs.com/v5/company/enrich', { body: {"website":"peopledatalabs.com"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fcompany%2Fenrich" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"website":"peopledatalabs.com"}'
    ```
  </Tab>
</Tabs>

### Search companies

**POST** `https://api.peopledatalabs.com/v5/company/search` — \$0.05 / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.peopledatalabs.com/v5/company/search', {
      body: {
    "sql": "SELECT * FROM company WHERE industry='computer software'",
    "size": 1
    },
    });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fcompany%2Fsearch" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"sql":"SELECT * FROM company WHERE industry='\''computer software'\''","size":1}'
    ```
  </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>
