Skip to main content
GET
/
v1
/
results
Get Results
curl --request GET \
  --url https://api.lobstr.io/v1/results \
  --header 'Authorization: <authorization>'
{
  "internal_unique_id": "<string>",
  "tweet_url": "<string>",
  "original_tweet_url": "<string>",
  "original_tweet_id": "<string>",
  "name": "<string>",
  "user_id": "<string>",
  "username": "<string>",
  "published_at": {},
  "content": "<string>",
  "in_reply_to_screen_name": "<string>",
  "in_reply_to_status_id_str": "<string>",
  "in_reply_to_user_id_str": "<string>",
  "views_count": 123,
  "retweet_count": 123,
  "likes": 123,
  "quote_count": 123,
  "reply_count": 123,
  "bookmarks_count": 123,
  "media_0_thumbnail": "<string>",
  "media_0_type": "<string>",
  "media_0_url": "<string>",
  "media_1_thumbnail": "<string>",
  "media_1_type": "<string>",
  "media_1_url": "<string>",
  "media_2_thumbnail": "<string>",
  "media_2_type": "<string>",
  "media_2_url": "<string>",
  "media_3_thumbnail": "<string>",
  "media_3_type": "<string>",
  "media_3_url": "<string>",
  "binded_media_url": "<string>",
  "binded_media_domain": "<string>",
  "binded_media_thumbnail_url": "<string>",
  "binded_media_title": "<string>",
  "binded_media_description": "<string>",
  "is_retweeted": true,
  "is_quoted": true,
  "is_pinned": true,
  "_json": "<any>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve scraped data from your Twitter User Tweets Scraper runs.

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

squid
string
required
Hash of the squid to get results from
run
string
Hash of a specific run (optional)
page
integer
Page number (default: 1). Example: 1

Result Fields

Each result object contains the following fields:
internal_unique_id
string
Unique internal identifier for the tweet. Example: 1996281178668876214
tweet_url
string
Direct URL to the tweet on Twitter/X. Example: https://twitter.com/OpenAI/status/1996281178668876214
original_tweet_url
string
URL of the original tweet (populated if this is a retweet or quote tweet)
original_tweet_id
string
Unique identifier of the original tweet (for retweets and quote tweets)
name
string
Display name of the tweet author. Example: OpenAI
user_id
string
Unique internal Twitter/X identifier of the tweet author. Example: 4398626122
username
string
Twitter/X handle of the author (without the @ symbol). Example: OpenAI
published_at
datetime
Date and time the tweet was published. Example: 2025-12-03T18:11:36+00:00
content
text
Full text content of the tweet. Example: `In our tests, we found that the confessions method significantly improves the visibility of model misbehavior.Averaging across our evaluations designed to induce misbehavior, the probability of “false negatives” (i.e., the model not complying with instructions and then not confessing to it) is only 4.4%.`
in_reply_to_screen_name
string
Twitter/X handle of the account this tweet is replying to. Example: OpenAI
in_reply_to_status_id_str
string
Unique identifier of the tweet being replied to. Example: 1996281175770599447
in_reply_to_user_id_str
string
Twitter/X user ID of the account being replied to. Example: 4398626122
views_count
integer
Total number of times the tweet has been viewed. Example: 105130
retweet_count
integer
Number of times the tweet has been retweeted. Example: 31
likes
integer
Number of likes the tweet received. Example: 408
quote_count
integer
Number of times the tweet has been quoted. Example: 2
reply_count
integer
Number of replies to the tweet. Example: 31
bookmarks_count
integer
Number of times the tweet has been bookmarked. Example: 48
media_0_thumbnail
string
Thumbnail URL of the 1st media item in the tweet (0-indexed). Example: https://pbs.twimg.com/media/G7Q1aWgb0AAuhN-.jpg
media_0_type
string
Type of the 1st media item (e.g. photo, video, animated_gif). Example: photo
media_0_url
string
URL of the 1st media item in the tweet. Example: https://pbs.twimg.com/media/G7Q1aWgb0AAuhN-.jpg
media_1_thumbnail
string
Thumbnail URL of the 2nd media item attached to the tweet. Example: https://pbs.twimg.com/media/G7Q1aWZbMAAxa4c.jpg
media_1_type
string
Type of the 2nd media item (e.g. photo, video). Example: photo
media_1_url
string
URL of the 2nd media item attached to the tweet. Example: https://pbs.twimg.com/media/G7Q1aWZbMAAxa4c.jpg
media_2_thumbnail
string
Thumbnail URL of the 3rd media item attached to the tweet
media_2_type
string
Type of the 3rd media item (e.g. photo, video)
media_2_url
string
URL of the 3rd media item attached to the tweet
media_3_thumbnail
string
Thumbnail URL of the 4th media item attached to the tweet
media_3_type
string
Type of the 4th media item (e.g. photo, video)
media_3_url
string
URL of the 4th media item attached to the tweet
binded_media_url
string
URL of a linked media card (e.g. article preview) embedded in the tweet
binded_media_domain
string
Domain of the linked media card embedded in the tweet
binded_media_thumbnail_url
string
Thumbnail image URL of the linked media card
binded_media_title
string
Title of the linked media card embedded in the tweet
binded_media_description
string
Description text of the linked media card
is_retweeted
boolean
Whether this tweet is a retweet of another tweet. Example: false
is_quoted
boolean
Whether this tweet quotes another tweet. Example: false
is_pinned
boolean
Whether the tweet is pinned to the top of the author’s profile. Example: false
_json
json
Raw JSON tweet data returned by the Twitter/X API