LinkedIn lookup
Get LinkedIn lookup result
Poll the status and result of a LinkedIn lookup job submitted via Lookup LinkedIn company.
GET
/
v1
/
lookup
/
linkedin
/
{job_id}
Get LinkedIn lookup result
curl --request GET \
--url https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"created_at": "2026-06-08T14:00:32.411Z",
"completed_at": "2026-06-08T14:00:38.151Z",
"record": {
"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
}
}
}Poll with the
When
id from Lookup LinkedIn company.
Status lifecycle
pending → processing → completed | failed
completed, record holds the provisional match and profile. No match still completes with match_method: "none" and profile: null.
See LinkedIn lookup result.
Example
curl
curl https://api.kernel.ai/rest/v1/lookup/linkedin/550e8400-e29b-41d4-a716-446655440000 \
-H "x-api-key: $KERNEL_API_KEY"
Response (200) — completed
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"created_at": "2026-06-08T14:00:32.411Z",
"completed_at": "2026-06-08T14:00:38.151Z",
"record": {
"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
}
}
}
Related endpoints
Authorizations
Include your API key in the x-api-key header.
Path Parameters
ID of the LinkedIn lookup job
Example:
"550e8400-e29b-41d4-a716-446655440000"
Response
Job status response
Job identifier, present for non-failed jobs.
Job identifier, present instead of id when the job has failed.
Available options:
pending, processing, completed, failed Show child attributes
Show child attributes
⌘I
Get LinkedIn lookup result
curl --request GET \
--url https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kernel.ai/rest/v1/lookup/linkedin/{job_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"created_at": "2026-06-08T14:00:32.411Z",
"completed_at": "2026-06-08T14:00:38.151Z",
"record": {
"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
}
}
}
