> ## 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.

# Get Results

> Retrieve scraped data from Twitter User Tweets Scraper

Retrieve scraped data from your **Twitter User Tweets Scraper** runs.

## Headers

<ParamField header="Authorization" type="string" required>
  Your API authentication token. Value: `Token YOUR_API_KEY`
</ParamField>

## Query Parameters

<ParamField query="squid" type="string" required>
  Hash of the squid to get results from
</ParamField>

<ParamField query="run" type="string">
  Hash of a specific run (optional)
</ParamField>

<ParamField query="page" type="integer">
  Page number (default: 1). Example: `1`
</ParamField>

## Result Fields

Each result object contains the following fields:

<ResponseField name="internal_unique_id" type="string">
  Unique internal identifier for the tweet. Example: `1996281178668876214`
</ResponseField>

<ResponseField name="tweet_url" type="string">
  Direct URL to the tweet on Twitter/X. Example: `https://twitter.com/OpenAI/status/1996281178668876214`
</ResponseField>

<ResponseField name="original_tweet_url" type="string">
  URL of the original tweet (populated if this is a retweet or quote tweet)
</ResponseField>

<ResponseField name="original_tweet_id" type="string">
  Unique identifier of the original tweet (for retweets and quote tweets)
</ResponseField>

<ResponseField name="name" type="string">
  Display name of the tweet author. Example: `OpenAI`
</ResponseField>

<ResponseField name="user_id" type="string">
  Unique internal Twitter/X identifier of the tweet author. Example: `4398626122`
</ResponseField>

<ResponseField name="username" type="string">
  Twitter/X handle of the author (without the @ symbol). Example: `OpenAI`
</ResponseField>

<ResponseField name="published_at" type="datetime">
  Date and time the tweet was published. Example: `2025-12-03T18:11:36+00:00`
</ResponseField>

<ResponseField name="content" type="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%.\`
</ResponseField>

<ResponseField name="in_reply_to_screen_name" type="string">
  Twitter/X handle of the account this tweet is replying to. Example: `OpenAI`
</ResponseField>

<ResponseField name="in_reply_to_status_id_str" type="string">
  Unique identifier of the tweet being replied to. Example: `1996281175770599447`
</ResponseField>

<ResponseField name="in_reply_to_user_id_str" type="string">
  Twitter/X user ID of the account being replied to. Example: `4398626122`
</ResponseField>

<ResponseField name="views_count" type="integer">
  Total number of times the tweet has been viewed. Example: `105130`
</ResponseField>

<ResponseField name="retweet_count" type="integer">
  Number of times the tweet has been retweeted. Example: `31`
</ResponseField>

<ResponseField name="likes" type="integer">
  Number of likes the tweet received. Example: `408`
</ResponseField>

<ResponseField name="quote_count" type="integer">
  Number of times the tweet has been quoted. Example: `2`
</ResponseField>

<ResponseField name="reply_count" type="integer">
  Number of replies to the tweet. Example: `31`
</ResponseField>

<ResponseField name="bookmarks_count" type="integer">
  Number of times the tweet has been bookmarked. Example: `48`
</ResponseField>

<ResponseField name="media_0_thumbnail" type="string">
  Thumbnail URL of the 1st media item in the tweet (0-indexed). Example: `https://pbs.twimg.com/media/G7Q1aWgb0AAuhN-.jpg`
</ResponseField>

<ResponseField name="media_0_type" type="string">
  Type of the 1st media item (e.g. photo, video, animated\_gif). Example: `photo`
</ResponseField>

<ResponseField name="media_0_url" type="string">
  URL of the 1st media item in the tweet. Example: `https://pbs.twimg.com/media/G7Q1aWgb0AAuhN-.jpg`
</ResponseField>

<ResponseField name="media_1_thumbnail" type="string">
  Thumbnail URL of the 2nd media item attached to the tweet. Example: `https://pbs.twimg.com/media/G7Q1aWZbMAAxa4c.jpg`
</ResponseField>

<ResponseField name="media_1_type" type="string">
  Type of the 2nd media item (e.g. photo, video). Example: `photo`
</ResponseField>

<ResponseField name="media_1_url" type="string">
  URL of the 2nd media item attached to the tweet. Example: `https://pbs.twimg.com/media/G7Q1aWZbMAAxa4c.jpg`
</ResponseField>

<ResponseField name="media_2_thumbnail" type="string">
  Thumbnail URL of the 3rd media item attached to the tweet
</ResponseField>

<ResponseField name="media_2_type" type="string">
  Type of the 3rd media item (e.g. photo, video)
</ResponseField>

<ResponseField name="media_2_url" type="string">
  URL of the 3rd media item attached to the tweet
</ResponseField>

<ResponseField name="media_3_thumbnail" type="string">
  Thumbnail URL of the 4th media item attached to the tweet
</ResponseField>

<ResponseField name="media_3_type" type="string">
  Type of the 4th media item (e.g. photo, video)
</ResponseField>

<ResponseField name="media_3_url" type="string">
  URL of the 4th media item attached to the tweet
</ResponseField>

<ResponseField name="binded_media_url" type="string">
  URL of a linked media card (e.g. article preview) embedded in the tweet
</ResponseField>

<ResponseField name="binded_media_domain" type="string">
  Domain of the linked media card embedded in the tweet
</ResponseField>

<ResponseField name="binded_media_thumbnail_url" type="string">
  Thumbnail image URL of the linked media card
</ResponseField>

<ResponseField name="binded_media_title" type="string">
  Title of the linked media card embedded in the tweet
</ResponseField>

<ResponseField name="binded_media_description" type="string">
  Description text of the linked media card
</ResponseField>

<ResponseField name="is_retweeted" type="boolean">
  Whether this tweet is a retweet of another tweet. Example: `false`
</ResponseField>

<ResponseField name="is_quoted" type="boolean">
  Whether this tweet quotes another tweet. Example: `false`
</ResponseField>

<ResponseField name="is_pinned" type="boolean">
  Whether the tweet is pinned to the top of the author's profile. Example: `false`
</ResponseField>

<ResponseField name="_json" type="json">
  Raw JSON tweet data returned by the Twitter/X API
</ResponseField>
