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{
"unique_id": "<string>",
"nickname": "<string>",
"text": "<string>",
"has_image": true,
"like_count": 123,
"reply_count": 123,
"liked_by_author": true,
"is_author": true,
"is_reply": true,
"replied_by_author": true,
"created_at": {},
"comment_id": "<string>",
"video_id": "<string>",
"reply_to": "<string>",
"thread_id": "<string>",
"user_id": "<string>",
"is_pinned": true,
"image": "<string>",
"avatar": "<string>",
"input_video_url": "<string>",
"scraping_time": {}
}TikTok Comments Scraper
Get Results
Retrieve scraped data from TikTok 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{
"unique_id": "<string>",
"nickname": "<string>",
"text": "<string>",
"has_image": true,
"like_count": 123,
"reply_count": 123,
"liked_by_author": true,
"is_author": true,
"is_reply": true,
"replied_by_author": true,
"created_at": {},
"comment_id": "<string>",
"video_id": "<string>",
"reply_to": "<string>",
"thread_id": "<string>",
"user_id": "<string>",
"is_pinned": true,
"image": "<string>",
"avatar": "<string>",
"input_video_url": "<string>",
"scraping_time": {}
}Retrieve scraped data from your TikTok 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 TikTok comment. Example:
sinzelsstring
TikTok display name of the comment author. Example:
Sinzelsstring
Full text content of the TikTok comment. Example:
UPDATE 2025; Bella Poarch: 69.9M Leah halton: 64Mboolean
Whether the comment contains an image or sticker. Example:
falseinteger
Number of likes the comment received. Example:
7418integer
Number of replies to this comment. Example:
91boolean
Whether the video creator liked this comment. Example:
falseboolean
Whether the commenter is the video creator. Example:
falseboolean
Whether this is a reply to another comment. Example:
falseboolean
Whether the video creator replied to this comment. Example:
falsedatetime
Date and time the comment was posted. Example:
2025-04-16T13:25:57Zstring
Unique TikTok identifier for the comment. Example:
7493901624780276486string
Unique identifier for the TikTok video this comment belongs to. Example:
6862153058223197445string
Username of the account this comment is replying to
string
Identifier of the comment thread this reply belongs to
string
Unique TikTok identifier of the comment author. Example:
7257306630806356997boolean
Whether the comment is pinned to the top of the video. Example:
falsestring
URL of the image or sticker attached to the comment
string
URL of the comment author’s TikTok profile picture. Example:
https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/6e61cfab75c399e7a58459442d607463~tplv-tiktokx-cropcenter:100:100.jpg?dr=10399&refresh_token=1aa12fef&x-expires=1774080000&x-signature=LM4Kos6ABLQMbiGzx6uR3FBKCPU%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=no1astring
URL of the TikTok video provided as scraper input. Example:
https://www.tiktok.com/@bellapoarch/video/6862153058223197445datetime
Timestamp when the comment was scraped. Example:
2026-03-20T16:47:36ZResponse
200
{
"total_results": 1,
"limit": 50,
"page": 1,
"total_pages": 1,
"result_from": 1,
"result_to": 1,
"data": [
{
"id": 88365,
"object": "result",
"squid": "66ead021770793f40275dd07106c819b",
"run": "dc4a5fa78da64f5c11c43082e257470e",
"unique_id": "sinzels",
"nickname": "Sinzels",
"text": "UPDATE 2025;\nBella Poarch: 69.9M\nLeah halton: 64M",
"has_image": false,
"like_count": 7418,
"reply_count": 91,
"liked_by_author": false,
"is_author": false,
"is_reply": false,
"replied_by_author": false,
"created_at": "2025-04-16T13:25:57Z",
"comment_id": "7493901624780276486",
"video_id": "6862153058223197445",
"reply_to": null,
"thread_id": null,
"user_id": "7257306630806356997",
"is_pinned": false,
"image": null,
"avatar": "https://p16-common-sign.tiktokcdn-eu.com/tos-alisg-avt-0068/6e61cfab75c399e7a58459442d607463~tplv-tiktokx-cropcenter:100:100.jpg?dr=10399&refresh_token=1aa12fef&x-expires=1774080000&x-signature=LM4Kos6ABLQMbiGzx6uR3FBKCPU%3D&t=4d5b0474&ps=13740610&shp=30310797&shcp=ff37627b&idc=no1a",
"input_video_url": "https://www.tiktok.com/@bellapoarch/video/6862153058223197445",
"scraping_time": "2026-03-20T16:47:36Z",
"functions": null,
"native_id": 88365
}
],
"next": null,
"previous": null
}