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

# LinkedIn lookup result

Returned in `record` when a [LinkedIn lookup job](/api-reference/endpoint/get-linkedin-lookup) completes.

Not Kernel-verified. `provenance.kernel_approved` is always `false`. Fields use the `linkedin_*` prefix so they are not Kernel firmographics.

## `match`

| Field          | Type             | Description                                  |
| -------------- | ---------------- | -------------------------------------------- |
| `linkedin_url` | `string \| null` | Matched LinkedIn company URL                 |
| `slug`         | `string \| null` | LinkedIn company slug                        |
| `match_method` | `string`         | `linkedin_url`, `website`, `name`, or `none` |
| `confidence`   | `string`         | `HIGH`, `MEDIUM`, or `LOW`                   |

## `profile`

`object \| null` — `null` when `match_method` is `none`.

| Field                         | Type             |
| ----------------------------- | ---------------- |
| `linkedin_name`               | `string \| null` |
| `linkedin_website`            | `string \| null` |
| `linkedin_headcount`          | `number \| null` |
| `linkedin_industry`           | `string \| null` |
| `linkedin_country`            | `string \| null` |
| `linkedin_company_size_range` | `string \| null` |
| `linkedin_company_type`       | `string \| null` |
| `linkedin_locality`           | `string \| null` |
| `linkedin_address`            | `string \| null` |
| `linkedin_founded_year`       | `number \| null` |
| `linkedin_follower_count`     | `number \| null` |
| `linkedin_description`        | `string \| null` |

## `provenance`

| Field             | Type      | Description    |
| ----------------- | --------- | -------------- |
| `kernel_approved` | `boolean` | Always `false` |

## Example

```json theme={null}
{
  "match": {
    "linkedin_url": "https://www.linkedin.com/company/stripe",
    "slug": "stripe",
    "match_method": "website",
    "confidence": "HIGH"
  },
  "profile": {
    "linkedin_name": "Stripe",
    "linkedin_website": "https://stripe.com",
    "linkedin_headcount": 8000,
    "linkedin_industry": "Financial Services",
    "linkedin_country": "United States",
    "linkedin_company_size_range": "1001-5000",
    "linkedin_company_type": "Privately Held",
    "linkedin_locality": "San Francisco, CA",
    "linkedin_address": null,
    "linkedin_founded_year": 2010,
    "linkedin_follower_count": 500000
  },
  "provenance": {
    "kernel_approved": false
  }
}
```
