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

# Send your first Company Enrichment API request

## Look Up a Company Profile Using the Company Enrichment API

Next, let’s look at some records in the [Company Dataset](/docs/company-stats).

Just as you used the Person Enrichment API to retrieve the profile of a specific person, you can use the [Company Enrichment API](/docs/company-enrichment-api) to retrieve the profile of a specific company. Let’s retrieve the record for People Data Labs using our LinkedIn profile: `linkedin.com/company/peopledatalabs/`

## Sending your first request

Copy the following URL and paste it into a new tab in your browser.

<Danger>
  **Before pasting the URL**

  * Replace `XXXX` after `api_key` with your API key
  * This will **consume 1 API credit** of your free 100 monthly credits for the Company Enrichment API. To read more about credits, check out this [Help Center article](https://support.peopledatalabs.com/hc/en-us/articles/23553812020891-Pricing-Overview)
</Danger>

```bash URL theme={null}
https://api.peopledatalabs.com/v5/company/enrich?api_key=XXXX&pretty=True&profile=linkedin.com/company/peopledatalabs
```

The result should look something like this:

<Frame>
  <img src="https://mintcdn.com/peopledatalabs/0Dx9WJ8G6RwVLrEr/images/docs/edd661b4019f4f32384bf6a453a459cdd411a0f3a4702905069e14b681c68026-image.png?fit=max&auto=format&n=0Dx9WJ8G6RwVLrEr&q=85&s=4512f1622207e9245e9e4f4d1c106be0" align="center" data-transcend-suppress width="1647" height="761" data-path="images/docs/edd661b4019f4f32384bf6a453a459cdd411a0f3a4702905069e14b681c68026-image.png" />
</Frame>

<Info>
  **Pro tip**

  If you want a better way to work with the result in a browser, consider downloading a [JSON Formatting extension](https://chromewebstore.google.com/detail/json-formatter/bcjindcccaagfpapjjmafapmmgkkhgoa?pli=1)
</Info>

As with records in our Person Dataset, company profiles in our Company Dataset are stored as JSON objects, and they contain information for the fields in our [Company Schema](/docs/company-fields).

### Try Looking Up Another Company Profile

Next, try looking up another company profile. This time, find your favorite company on [LinkedIn](https://www.linkedin.com/). For example, [Google](https://www.linkedin.com/company/google/). Go to the company’s profile page and copy the URL.

As you should now be trying to get a feel for the type of data available within in the PDL datasets, try a few different LinkedIn URLs. Here are some examples:

* `https://www.linkedin.com/company/google/`
* `https://www.linkedin.com/company/amazon/`
* `https://www.linkedin.com/company/apple/`

Once you have chosen a LinkedIn URL, run the following command:

<Danger>
  **Before pasting the URL**

  * Replace `XXXX` after `api_key` with your API key
  * Replace `YYYY` after `profile` with the desired LinkedIn URL
  * This will **consume 1 API credit** of your free 100 monthly credits for the Company Enrichment API. To read more about credits, check out this [Help Center article](https://support.peopledatalabs.com/hc/en-us/articles/23553812020891-Pricing-Overview)
</Danger>

```bash Shell theme={null}
https://api.peopledatalabs.com/v5/company/enrich?api_key=XXXX&pretty=True&profile=YYYY
```

In the response, you should see either:

* The full PDL company profile associated with the LinkedIn URL that you submitted.
* An [error](/docs/errors) indicating that no matching record could be found, in which case you can try one of the example LinkedIn URLs listed above.

We encourage you to look up a number of company profiles to get a sense of the type of coverage and information that our datasets offer.


## Related topics

- [Send your first Person Enrichment API request](/docs/send-your-first-person-enrichment-api-call.md)
- [Quickstart](/docs/quickstart.md)
- [April 2022 Release Notes](/changelog/april-2022-release-notes-v18.md)
- [August 2025 Release Notes](/changelog/august-2025-release-notes-v311.md)
- [Reference - Person Enrichment API](/docs/reference-person-enrichment-api.md)
