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

# Quickstart - Company Enrichment API

## Getting Started

In order to use our Company Enrichment API, you must have an active API key. You can look up your API key by logging into our [self-serve dashboard](https://www.peopledatalabs.com/main/api-keys) and going to the **API Keys** section.

<Tip>
  **Need an API Key?**

  If you don't have an API key, you can easily create one by [signing up](https://peopledatalabs.com/signup) for a self-serve account. For more information, check out our [Self-Serve Quickstart Guide](https://blog.peopledatalabs.com/post/self-signup-api-quickstart), which walks you through the sign-up process as well as shows you how to use the self-serve API dashboard.
</Tip>

## Simple Example

As mentioned in the [Overview](/docs/company-enrichment-api#overview), the Company Enrichment API is a means of performing a one-to-one match of a company with those included in our [Company](/docs/company-schema) Dataset. In order to use the Company Enrichment API, **you will need one of the [input parameters](/docs/input-parameters-company-enrichment-api) of the API**.

Here's a quick example that demonstrates retrieving a record with a `website` of `google.com`:

<CodeGroup>
  ```python Python3 SDK theme={null}
  # See https://github.com/peopledatalabs/peopledatalabs-python
  from peopledatalabs import PDLPY

  # Create a client, specifying your API key
  CLIENT = PDLPY(
      api_key="YOUR API KEY",
  )

  # Create a parameters JSON object
  QUERY_STRING = {"website":"google.com"}

  # Pass the parameters object to the Company Enrichment API
  response = CLIENT.company.enrichment(**QUERY_STRING)

  # Print the API response
  print(response.text)
  ```

  ```bash cURL theme={null}
  curl -X GET -G \
    'https://api.peopledatalabs.com/v5/company/enrich'\
    -H 'X-Api-Key: xxxx'\
    --data-urlencode 'website=google.com'
  ```

  ```javascript JavaScript theme={null}
  // See https://github.com/peopledatalabs/peopledatalabs-js
  import PDLJS from 'peopledatalabs';

  // Create a client, specifying your API key
  const PDLJSClient = new PDLJS({ apiKey: "YOUR API KEY" });

  // Create a parameters JSON object
  const queryString = {"website":"google.com"}

  // Pass the parameters object to the Company Enrichment API
  PDLJSClient.company.enrichment(queryString).then((response) => {
      // Print the API response
      console.log(response);
  }).catch((error) => {
      console.log(error);
  });
  ```

  ```ruby Ruby theme={null}
  # See https://github.com/peopledatalabs/peopledatalabs-ruby
  require 'peopledatalabs'

  # Set your API key
  Peopledatalabs.api_key = 'YOUR API KEY'

  # Create a parameters JSON object
  QUERY_STRING = {"website":"google.com"}

  # Pass the parameters object to the Company Enrichment API
  response = Peopledatalabs::Enrichment.company(params: QUERY_STRING)

  # Print the API response
  puts response
  ```

  ```go Go expandable theme={null}
  package main

  import (
      "fmt"
      "context"
  )

  // See https://github.com/peopledatalabs/peopledatalabs-go
  import (
      pdl "github.com/peopledatalabs/peopledatalabs-go"
      pdlmodel "github.com/peopledatalabs/peopledatalabs-go/model"
  )

  func main() {
      // Set your API key
      apiKey := "YOUR API KEY"
      // Set API key as environmental variable
      // apiKey := os.Getenv("API_KEY")

      // Create a client, specifying your API key
      client := pdl.New(apiKey)
      
      // Create a parameters JSON object
      queryString := pdlmodel.CompanyParams{Website: "google.com"}
      
      params := pdlmodel.EnrichCompanyParams{
          CompanyParams: queryString,
      }
      
      // Pass the parameters object to the Company Enrichment API
      response, err := client.Company.Enrich(context.Background(), params)
      
      // Check for successful response
      if err == nil {
          // Print the API response
          fmt.Println(response)
      }  
  }
  ```

  ```python Python3 theme={null}
  import requests

  # Set your API key
  API_KEY = "YOUR API KEY"

  # Set the Company Enrichment API URL
  PDL_URL = "https://api.peopledatalabs.com/v5/company/enrich"

  # Create a parameters JSON object
  QUERY_STRING = {"website":"google.com"}

  # Set headers
  HEADERS = {
      'accept': "application/json",
      'content-type': "application/json",
      'x-api-key': API_KEY
      }

  # Pass the parameters object to the Company Enrichment API
  response = requests.request("GET", PDL_URL, headers=HEADERS, params=QUERY_STRING)

  # Print the API response
  print(response.text)
  ```
</CodeGroup>

The API will return the matching company record if the website matches one in our dataset.

The result of running the above code should be the profile for Google from our [Company Dataset](/docs/company-stats). To see a full company profile that would be returned, check out our [Example Company Record](/docs/example-company-record).

```json JSON theme={null}
{
  "status": 200,
  "name": "google",
  "id": "aKCIYBNF9ey6o5CjHCCO4goHYKlf",
  ...
  "likelihood": 4
}
```

If you don't get this response, check out our [Errors](/docs/errors) page for more information.

***


## Related topics

- [Quickstart - Skill Enrichment API](/docs/quickstart-skill-enrichment-api.md)
- [Quickstart - IP Enrichment API](/docs/quickstart-ip-enrichment-api.md)
- [Quickstart - Person Enrichment API](/docs/quickstart-person-enrichment-api.md)
- [Quickstart - Job Title Enrichment API](/docs/quickstart-job-title-enrichment-api.md)
- [Company Enrichment API](/docs/company-enrichment-api.md)
