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{
"comment_id": "<string>",
"comment_url": "<string>",
"post_url": "<string>",
"text": "<string>",
"giphy_media_info": "<any>",
"owner_username": "<string>",
"owner_full_name": "<string>",
"owner_id": "<string>",
"owner_profile_pic_url": "<string>",
"owner_is_verified": true,
"owner_is_private": true,
"timestamp": {},
"likes_count": 123,
"replies_count": 123,
"owner_profile_url": "<string>",
"is_child_comment": true,
"parent_comment_id": "<string>"
}Instagram Post Comments Scraper
Get Results
Retrieve scraped data from Instagram Post Comments 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{
"comment_id": "<string>",
"comment_url": "<string>",
"post_url": "<string>",
"text": "<string>",
"giphy_media_info": "<any>",
"owner_username": "<string>",
"owner_full_name": "<string>",
"owner_id": "<string>",
"owner_profile_pic_url": "<string>",
"owner_is_verified": true,
"owner_is_private": true,
"timestamp": {},
"likes_count": 123,
"replies_count": 123,
"owner_profile_url": "<string>",
"is_child_comment": true,
"parent_comment_id": "<string>"
}Retrieve scraped data from your Instagram Post Comments 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
Unique identifier for the Instagram comment. Example:
18397500988178795string
Direct URL to the comment on Instagram. Example:
https://www.instagram.com/p/DDIJAfeyemG/c/18397500988178795string
URL of the Instagram post this comment belongs to. Example:
https://www.instagram.com/reel/DDIJAfeyemGstring
Full text content of the comment. Example:
I LOVE INSTAGRAM #instagramjson
Details of a Giphy GIF or sticker attached to the comment
string
Instagram username of the comment author. Example:
mohsinjamindar07string
Display name of the comment author on Instagram. Example:
Mohsin Jamindarstring
Unique Instagram identifier of the comment author. Example:
40564582835string
URL of the comment author’s Instagram profile picture. Example:
https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/455119162_509085271605404.jpgboolean
Whether the comment author has a verified badge on Instagram. Example:
falseboolean
Whether the comment author’s Instagram account is set to private. Example:
falsedatetime
Unix timestamp of when the comment was posted. Example:
2026-02-15T06:27:58.000Zinteger
Number of likes the comment received. Example:
0integer
Number of replies to this comment. Example:
0string
URL of the comment author’s Instagram profile. Example:
https://instagram.com/sai_jonovboolean
Whether this is a reply to another comment (nested comment). Example:
falsestring
Unique identifier of the parent comment this is a reply to
Response
200
{
"total_results": 1,
"limit": 50,
"page": 1,
"total_pages": 1,
"result_from": 1,
"result_to": 1,
"data": [
{
"id": 96249,
"object": "result",
"squid": "a22ca0a0a292c72cdb1a1990822f1863",
"run": "b874687c8f14b83f5cc5f59c1f4c113c",
"comment_id": "18397500988178795",
"comment_url": "https://www.instagram.com/p/DDIJAfeyemG/c/18397500988178795",
"post_url": "https://www.instagram.com/reel/DDIJAfeyemG",
"text": "I LOVE INSTAGRAM #instagram",
"giphy_media_info": null,
"owner_username": "mohsinjamindar07",
"owner_full_name": "Mohsin Jamindar",
"owner_id": "40564582835",
"owner_profile_pic_url": "https://scontent-iad3-2.cdninstagram.com/v/t51.2885-19/455119162_509085271605404.jpg",
"owner_is_verified": false,
"owner_is_private": false,
"timestamp": "2026-02-15T06:27:58.000Z",
"likes_count": 0,
"replies_count": 0,
"owner_profile_url": "https://instagram.com/sai_jonov",
"is_child_comment": false,
"parent_comment_id": null,
"functions": null,
"native_id": 96249
}
],
"next": null,
"previous": null
}