---
title: "Enrich Company"
description: "Return a company's full profile from our data lake by any single identifier."
---

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

# Enrich Company

`GET /api/v1/company`

Returns a company's full profile from our data lake by any single identifier you already have.

Provide **one** of `linkedin_url`, `username`, `company_id`, or `id`.

:::tip
`username` is the fastest lookup. It's the slug after `/company/` in the company's profile URL. For example, Stripe's username is `stripe`.
:::

## Query parameters

| Parameter | Type | Required | Description |
|---|---|---|---|
| `linkedin_url` | string | one of | Full LinkedIn company URL |
| `username` | string | one of | Company slug after `/company/` |
| `company_id` | string | one of | Numeric company ID |
| `id` | string | one of | Kooperativa internal company ID |

## Pricing

:::note
**1 credit**, charged **only when a company is found**. A `404` is free.
:::

## Code examples

```bash title="cURL"
curl "https://kooperativa.io/api/v1/company?username=stripe" \
  -H "Authorization: Bearer ik_live_..."
```

```js title="JavaScript"
const res = await fetch(
  "https://kooperativa.io/api/v1/company?username=stripe",
  { headers: { Authorization: `Bearer ${process.env.KOOPERATIVA_API_KEY}` } }
);
const { data } = await res.json();
```

```python title="Python"
import os, requests

res = requests.get(
"https://kooperativa.io/api/v1/company",
params={"username": "stripe"},
headers={"Authorization": f"Bearer {os.environ['KOOPERATIVA_API_KEY']}"},
)
data = res.json()["data"]
```

## Response

```json
{
  "data": {
"id": "b40cd26f-06f0-4097-897e-39b520c285a8",
"company_id": "2135371",
"name": "Stripe",
"tagline": "Help increase the GDP of the internet.",
"website": "https://stripe.com",
"linkedin_url": "https://www.linkedin.com/company/stripe",
"company_type": "Privately Held",
"founded_year": 2010,
"staff_count": 16904,
"follower_count": 1200000,
"hq_city": "South San Francisco",
"hq_country_code": "US",
"industries": ["Financial Services"],
"fetched_at": "2026-07-14T10:00:00Z"
  }
}
```

:::tip
Use the returned `company_id` to call [Current Employees](/companies/current-employees), [Headcount by Seniority](/companies/headcount-by-seniority), and [Hiring Signals](/companies/hiring-signals).
:::

Source: https://docs.kooperativa.io/companies/enrich-company/index.mdx
