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_url": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"email": "<string>",
"email_status": "<string>",
"post_url": "<string>",
"has_commented": true,
"comment": "<string>",
"comment_url": "<string>",
"has_liked": true,
"reaction_type": "<string>",
"result_type": "<string>",
"functions": "<any>",
"scraping_time": {}
}LinkedIn Posts Commenters and Likers Scraper
Get Results
Retrieve scraped data from Linkedin Posts Commenters and Likers 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_url": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"email": "<string>",
"email_status": "<string>",
"post_url": "<string>",
"has_commented": true,
"comment": "<string>",
"comment_url": "<string>",
"has_liked": true,
"reaction_type": "<string>",
"result_type": "<string>",
"functions": "<any>",
"scraping_time": {}
}Retrieve scraped data from your Linkedin Posts Commenters and Likers 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
Direct URL to the LinkedIn profile of the person who commented or liked. Example:
https://www.linkedin.com/in/jonathan-sardostring
First name of the LinkedIn member. Example:
Jonathanstring
Last name of the LinkedIn member. Example:
SARDOstring
Full name of the LinkedIn member. Example:
Jonathan SARDOstring
Email address found or enriched for this LinkedIn member. Example:
jonathan.sardo@uccellolabs.comstring
Validation status of the email address (e.g. valid, risky, invalid). Example:
validstring
URL of the LinkedIn post being analyzed. Example:
https://www.linkedin.com/posts/ramzib_une-nouvelle-trend-arrive-sur-les-r%C3%A9seaux-activity-7419012050967748609-UkSjboolean
Whether this person commented on the post. Example:
truestring
Text content of the comment left on the LinkedIn post. Example: `Je partage pas l’image car elle fait peur 😂Mais voilà ses arguments :Dans un monde où une IA prendrait le contrôle, les profils comme le tien ne seraient ni éliminés, ni ignorés.
Ils seraient neutralisés symboliquement : contenus, mais observés.`
string
Direct URL to the comment on the LinkedIn post. Example:
https://www.linkedin.com/feed/update/urn:li:activity:7419012050967748609?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7419012050967748609%2C7419056809266618368%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287419056809266618368%2Curn%3Ali%3Aactivity%3A7419012050967748609%29boolean
Whether this person liked or reacted to the post. Example:
falsestring
Type of reaction left on the post (e.g. Like, Celebrate, Support, Insightful)
string
Whether this entry is a commenter or a liker. Example:
commentjson
Additional enrichment functions enabled for this record. Example:
[]datetime
Timestamp when this record was scraped. Example:
2026-03-19T11:34:43ZResponse
200
{
"total_results": 1,
"limit": 50,
"page": 1,
"total_pages": 1,
"result_from": 1,
"result_to": 1,
"data": [
{
"id": 78774,
"object": "result",
"squid": "0d40a71e44764f9a0c27d7d8b96f1a9e",
"run": "0f8599c4bad134f6b93570b40db20527",
"profile_url": "https://www.linkedin.com/in/jonathan-sardo",
"first_name": "Jonathan",
"last_name": "SARDO",
"full_name": "Jonathan SARDO",
"email": "jonathan.sardo@uccellolabs.com",
"email_status": "valid",
"post_url": "https://www.linkedin.com/posts/ramzib_une-nouvelle-trend-arrive-sur-les-r%C3%A9seaux-activity-7419012050967748609-UkSj",
"has_commented": true,
"comment": "Je partage pas l'image car elle fait peur 😂\n\nMais voilà ses arguments :\n\nDans un monde où une IA prendrait le contrôle, les profils comme le tien ne seraient ni éliminés, ni ignorés.\nIls seraient neutralisés symboliquement : contenus, mais observés.",
"comment_url": "https://www.linkedin.com/feed/update/urn:li:activity:7419012050967748609?commentUrn=urn%3Ali%3Acomment%3A%28activity%3A7419012050967748609%2C7419056809266618368%29&dashCommentUrn=urn%3Ali%3Afsd_comment%3A%287419056809266618368%2Curn%3Ali%3Aactivity%3A7419012050967748609%29",
"has_liked": false,
"reaction_type": null,
"result_type": "comment",
"functions": null,
"scraping_time": "2026-03-19T11:34:43Z",
"native_id": 78774
}
],
"next": null,
"previous": null
}