Get Results
curl --request GET \
--url https://api.lobstr.io/v1/results \
--header 'Authorization: <authorization>'import requests
url = "https://api.lobstr.io/v1/results"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.lobstr.io/v1/results', 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.lobstr.io/v1/results",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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.lobstr.io/v1/results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.lobstr.io/v1/results")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.lobstr.io/v1/results")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"member_id": "<string>",
"full_name": "<string>",
"public_id": "<string>",
"profile_url": "<string>",
"headline": "<string>",
"location_text": "<string>",
"avatar_url": "<string>",
"connection_degree": "<string>",
"is_verified": true,
"is_premium": true,
"member_urn": "<string>",
"company_name": "<string>",
"company_url": "<string>",
"company_slug": "<string>",
"company_id": "<string>"
}LinkedIn Company Employees Scraper
Get Results
Retrieve scraped data from LinkedIn Company Employees Scraper
GET
/
v1
/
results
Get Results
curl --request GET \
--url https://api.lobstr.io/v1/results \
--header 'Authorization: <authorization>'import requests
url = "https://api.lobstr.io/v1/results"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.lobstr.io/v1/results', 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.lobstr.io/v1/results",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$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.lobstr.io/v1/results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
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.lobstr.io/v1/results")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.lobstr.io/v1/results")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"member_id": "<string>",
"full_name": "<string>",
"public_id": "<string>",
"profile_url": "<string>",
"headline": "<string>",
"location_text": "<string>",
"avatar_url": "<string>",
"connection_degree": "<string>",
"is_verified": true,
"is_premium": true,
"member_urn": "<string>",
"company_name": "<string>",
"company_url": "<string>",
"company_slug": "<string>",
"company_id": "<string>"
}Retrieve scraped data from your LinkedIn Company Employees Scraper runs.
Headers
string
required
Your API authentication token. Value:
Token YOUR_API_KEYQuery Parameters
string
required
Hash of the squid to get results from
integer
Page number (default: 1)
Result Fields
string
LinkedIn internal profile id, stable across name/URL changes. Example:
ACoAAABcDefGHIjklMNOpQRSTUVwXyzstring
Full name of the employee as displayed by LinkedIn. Example:
Alice Johnsonstring
Public profile slug used in the profile URL. Example:
alice-johnson-12345string
Direct URL to the employee’s LinkedIn profile. Example:
https://www.linkedin.com/in/alice-johnson-12345string
Profile headline. Example:
Senior Software Engineer at Googlestring
Location as displayed by LinkedIn. Example:
San Francisco Bay Areastring
URL of the employee profile picture. Example:
https://media.licdn.com/dms/image/v2/Cabcde/profile-displayphoto-shrink_200_200/0/1234567890?e=1234567890&v=beta&t=abcstring
Connection degree between the connected account and this employee (1st, 2nd, 3rd+). Example:
2ndboolean
Whether LinkedIn displays the verified member badge. Example:
falseboolean
Whether LinkedIn displays the premium member badge. Example:
falsestring
LinkedIn member URN (numeric member id). Example:
urn:li:member:123456789string
Name of the company the employee was matched on. Example:
Googlestring
URL of the company LinkedIn page. Example:
https://www.linkedin.com/company/googlestring
Slug of the company LinkedIn page. Example:
googlestring
Numeric LinkedIn id of the company. Example:
1441Code Examples
curl -G https://api.lobstr.io/v1/results \
-H "Authorization: Token YOUR_API_KEY" \
-d "squid=08ac061ab290b5ae0f831e086c98d4b5" \
-d "page=1"
import requests
response = requests.get(
"https://api.lobstr.io/v1/results",
headers={"Authorization": "Token YOUR_API_KEY"},
params={"squid": "08ac061ab290b5ae0f831e086c98d4b5", "page": 1},
)
print(response.json())
Response
200
{"total_results": 1, "data": [{"full_name": "Alice Johnson", "headline": "Senior Software Engineer at Google", "location_text": "San Francisco Bay Area", "profile_url": "https://www.linkedin.com/in/alice-johnson-12345", "connection_degree": "2nd", "company_name": "Google"}]}