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{
"universal_name": "<string>",
"name": "<string>",
"url": "<string>",
"company_id": "<string>",
"tagline": "<string>",
"description": "<string>",
"website": "<string>",
"industry": "<string>",
"company_size": "<string>",
"employees_count": 123,
"followers_count": 123,
"founded_year": 123,
"headquarters": "<string>",
"hq_street": "<string>",
"hq_locality": "<string>",
"hq_region": "<string>",
"hq_postal_code": "<string>",
"hq_country": "<string>",
"locations": "<any>",
"specialties": "<any>",
"company_type": "<string>",
"logo": "<string>",
"cover_image": "<string>",
"affiliated_pages": "<any>",
"showcase_pages": "<any>",
"similar_pages": "<any>",
"products": "<any>",
"phone": "<string>"
}LinkedIn Company Scraper
Get Results
Retrieve scraped data from LinkedIn Company 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{
"universal_name": "<string>",
"name": "<string>",
"url": "<string>",
"company_id": "<string>",
"tagline": "<string>",
"description": "<string>",
"website": "<string>",
"industry": "<string>",
"company_size": "<string>",
"employees_count": 123,
"followers_count": 123,
"founded_year": 123,
"headquarters": "<string>",
"hq_street": "<string>",
"hq_locality": "<string>",
"hq_region": "<string>",
"hq_postal_code": "<string>",
"hq_country": "<string>",
"locations": "<any>",
"specialties": "<any>",
"company_type": "<string>",
"logo": "<string>",
"cover_image": "<string>",
"affiliated_pages": "<any>",
"showcase_pages": "<any>",
"similar_pages": "<any>",
"products": "<any>",
"phone": "<string>"
}Retrieve scraped data from your LinkedIn Company 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 vanity slug for the company. Example:
googlestring
Company name. Example:
Googlestring
Canonical LinkedIn URL. Example:
https://www.linkedin.com/company/googlestring
LinkedIn internal numeric identifier. Example:
1441string
Short tagline.
text
Full ‘About us’ description.
string
Company website. Example:
https://about.googlestring
LinkedIn industry. Example:
Technology, Information and Internetstring
Employee count range declared by the company. Example:
10,001+ employeesinteger
Exact number of LinkedIn members listing this company. Example:
306912integer
Number of LinkedIn followers. Example:
23481902integer
Year founded. Example:
1998string
Headquarters as displayed. Example:
Mountain View, CAstring
Street address.
string
City. Example:
Mountain Viewstring
State or region. Example:
CAstring
Postal code. Example:
94043string
Country code. Example:
USjson
Every office location listed.
json
Specialties declared by the company.
string
Type of company. Example:
Public Companystring
URL of the company logo.
string
URL of the cover image.
json
Affiliated company pages.
json
Showcase pages of the company.
json
Pages LinkedIn shows as similar.
json
Products showcased.
string
Company phone number (only visible to logged-in members).
Response
200
{"total_results": 1, "data": [{"universal_name": "google", "name": "Google", "url": "https://www.linkedin.com/company/google", "industry": "Technology, Information and Internet", "employees_count": 306912, "followers_count": 23481902, "founded_year": 1998, "hq_country": "US"}]}