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{
"profile_id": "<string>",
"public_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"headline": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"current_company_url": "<string>",
"location": "<string>",
"email": "<string>",
"email_status": "<string>",
"mobile_phone": "<string>",
"public_url": "<string>",
"sales_navigator_url": "<string>",
"profile_picture_url": "<string>",
"profile_background_picture_url": "<string>",
"summary": "<string>",
"current_position": "<any>",
"past_job": "<string>",
"past_company_name": "<string>",
"positions": "<any>",
"past_school": "<string>",
"past_school_url": "<string>",
"educations": "<any>",
"skills": "<any>",
"languages": "<any>",
"volunteering_experiences": "<any>",
"connection_type": 123,
"num_of_connections": 123,
"num_of_shared_connections": 123,
"shared_connections": "<any>",
"recent_posts": "<any>",
"spotlight_badges": "<any>",
"following": "<any>",
"following_count": 123,
"last_interaction_type": "<string>",
"last_interaction_time": 123,
"open_link": true,
"premium": true,
"pending_invitation": true,
"saved": true,
"viewed": true,
"unlocked": true,
"full_name_pronunciation_audio": "<any>"
}Sales Nav Profile Scraper
Get Results
Retrieve scraped data from Sales Navigator Profile 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{
"profile_id": "<string>",
"public_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"headline": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"current_company_url": "<string>",
"location": "<string>",
"email": "<string>",
"email_status": "<string>",
"mobile_phone": "<string>",
"public_url": "<string>",
"sales_navigator_url": "<string>",
"profile_picture_url": "<string>",
"profile_background_picture_url": "<string>",
"summary": "<string>",
"current_position": "<any>",
"past_job": "<string>",
"past_company_name": "<string>",
"positions": "<any>",
"past_school": "<string>",
"past_school_url": "<string>",
"educations": "<any>",
"skills": "<any>",
"languages": "<any>",
"volunteering_experiences": "<any>",
"connection_type": 123,
"num_of_connections": 123,
"num_of_shared_connections": 123,
"shared_connections": "<any>",
"recent_posts": "<any>",
"spotlight_badges": "<any>",
"following": "<any>",
"following_count": 123,
"last_interaction_type": "<string>",
"last_interaction_time": 123,
"open_link": true,
"premium": true,
"pending_invitation": true,
"saved": true,
"viewed": true,
"unlocked": true,
"full_name_pronunciation_audio": "<any>"
}Retrieve scraped data from your Sales Navigator Profile 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
string
Hash of a specific run (optional)
integer
Page number (default: 1). Example:
1Result Fields
Each result object contains the following fields:string
Sales Navigator profile ID. Example:
ACwAAAGHtboB_SK60RCbrgLUstRVuTcNlzAHfPUstring
LinkedIn public ID (slug). Example:
danadelsteinstring
First name. Example:
Daniel (Dan)string
Last name. Example:
Adelsteinstring
Full name. Example:
Daniel (Dan) Adelsteinstring
Profile headline. Example:
Senior Vice President of International Development at Xponential Fitness (NYSE:XPOF)string
Current job title. Example:
Senior Vice President of International Developmentstring
Current company name. Example:
Xponential Fitnessstring
Current company LinkedIn URL. Example:
https://www.linkedin.com/company/19193147/string
Profile location. Example:
Lake Worth, Florida, United Statesstring
Email address found or enriched for this person. Example:
danieladelstein@yahoo.comstring
Email status. Example:
validstring
Mobile phone number. Example:
+1-555-000-0000string
LinkedIn public profile URL. Example:
https://www.linkedin.com/in/danadelsteinstring
LinkedIn Sales Navigator profile URL. Example:
https://www.linkedin.com/sales/people/ACwAAAGHtboB_SK60RCbrgLUstRVuTcNlzAHfPU,NAME_SEARCH,3tl8string
Profile picture URL. Example:
https://media.licdn.com/dms/image/C4E03AQFelTC96_eCyQ/profile-displayphoto-shrink_100_100/0/1649968936543string
Profile background picture URL. Example:
https://media.licdn.com/dms/image/C4E16AQGSyK_L6GSwng/profile-displaybackgroundimage-shrink_200_800/0/1648546335745string
Profile summary / about section. Example:
Founded in 2017 and headquartered in Irvine, California...json
Current position details. Example:
{'companyName': 'Xponential Fitness', 'title': 'Senior Vice President of International Development', 'companyUrn': 'urn:li:fs_salesCompany:19193147', 'current': True, 'location': 'Irvine, CA.', 'startedOn': {'year': 2022, 'month': 3}, 'endedOn': {}}string
Most recent past job title. Example:
Associate Vice President of Franchise Developmentstring
Most recent past company name. Example:
Mathnasium - The Math Learning Centerjson
All work positions / experience. Example:
[]string
Most recent school name. Example:
University of Floridastring
Most recent school LinkedIn URL. Example:
https://www.linkedin.com/school/uflorida/json
Education history. Example:
[]json
Skills and endorsement counts. Example:
[]json
Languages spoken. Example:
[]json
Volunteering experience entries. Example:
[]integer
Connection degree (1, 2, or 3). Example:
2integer
Number of connections. Example:
7869integer
Number of shared connections with the scraping account. Example:
2json
Mutual connections between you and this profile. Example:
[]json
Recent posts and comments (last 90 days) with text, reactions, comments count. Example:
[]json
Spotlight badges (mutual connections, recent posts, etc.). Example:
[{'id': 'SECOND_DEGREE_CONNECTION', 'displayValue': '2 mutual connections'}]json
Companies, schools and groups this person follows (up to 10). Example:
[]integer
Total number of entities this person follows. Example:
608string
Type of last interaction with this profile. Example:
VIEW_PROFILEinteger
Timestamp (ms) of last interaction with this profile. Example:
1687496301805boolean
Whether the profile has OpenLink enabled. Example:
falseboolean
Whether the profile has LinkedIn Premium. Example:
falseboolean
Whether there is a pending connection invitation. Example:
falseboolean
Whether the lead is saved in Sales Navigator. Example:
falseboolean
Whether the profile has been viewed. Example:
trueboolean
Whether the profile is unlocked in Sales Navigator. Example:
falsejson
Full name pronunciation audio metadata. Example:
{}Response
200
{
"total_results": 1,
"limit": 50,
"page": 1,
"total_pages": 1,
"result_from": 1,
"result_to": 1,
"data": [
{
"id": 97477,
"object": "result",
"squid": "1743a4c88b8c165f5759d466dd4e5ec0",
"run": "85cc34770298b4c48dd97b79778c2701",
"profile_id": "ACwAAAGHtboB_SK60RCbrgLUstRVuTcNlzAHfPU",
"public_id": "danadelstein",
"first_name": "Daniel (Dan)",
"last_name": "Adelstein",
"full_name": "Daniel (Dan) Adelstein",
"headline": "Senior Vice President of International Development at Xponential Fitness (NYSE:XPOF)",
"job_title": "Senior Vice President of International Development",
"company_name": "Xponential Fitness",
"current_company_url": "https://www.linkedin.com/company/19193147/",
"location": "Lake Worth, Florida, United States",
"email": "danieladelstein@yahoo.com",
"email_status": "valid",
"mobile_phone": "+1-555-000-0000",
"public_url": "https://www.linkedin.com/in/danadelstein",
"sales_navigator_url": "https://www.linkedin.com/sales/people/ACwAAAGHtboB_SK60RCbrgLUstRVuTcNlzAHfPU,NAME_SEARCH,3tl8",
"profile_picture_url": "https://media.licdn.com/dms/image/C4E03AQFelTC96_eCyQ/profile-displayphoto-shrink_100_100/0/1649968936543",
"profile_background_picture_url": "https://media.licdn.com/dms/image/C4E16AQGSyK_L6GSwng/profile-displaybackgroundimage-shrink_200_800/0/1648546335745",
"summary": "Founded in 2017 and headquartered in Irvine, California...",
"current_position": {
"companyName": "Xponential Fitness",
"title": "Senior Vice President of International Development",
"companyUrn": "urn:li:fs_salesCompany:19193147",
"current": true,
"location": "Irvine, CA.",
"startedOn": {
"year": 2022,
"month": 3
},
"endedOn": {}
},
"past_job": "Associate Vice President of Franchise Development",
"past_company_name": "Mathnasium - The Math Learning Center",
"positions": [],
"past_school": "University of Florida",
"past_school_url": "https://www.linkedin.com/school/uflorida/",
"educations": [],
"skills": [],
"languages": [],
"volunteering_experiences": [],
"connection_type": 2,
"num_of_connections": 7869,
"num_of_shared_connections": 2,
"shared_connections": [],
"recent_posts": [],
"spotlight_badges": [
{
"id": "SECOND_DEGREE_CONNECTION",
"displayValue": "2 mutual connections"
}
],
"following": [],
"following_count": 608,
"last_interaction_type": "VIEW_PROFILE",
"last_interaction_time": 1687496301805,
"open_link": false,
"premium": false,
"pending_invitation": false,
"saved": false,
"viewed": true,
"unlocked": false,
"full_name_pronunciation_audio": {},
"functions": null,
"native_id": 97477
}
],
"next": null,
"previous": null
}