| Field | Type | Required | Description | Example |
|---|---|---|---|---|
tweet_id |
str | ✔️ | The unique identifier for the Tweet | 1803006263529541838 |
is_paid_promotion |
OptionalNullable[bool] | ➖ | Indicates whether the content or user is associated with a paid promotion | true |
text |
str | ✔️ | The actual text content of the Tweet | |
created_at |
OptionalNullable[str] | ➖ | The date and time the Tweet was created | Mon Jun 17 03:51:48 +0000 2024 |
created_at_datetime |
OptionalNullable[str] | ➖ | The ISO 8601 format of the creation date | 2024-06-17T03:51:48.000Z |
bookmark_count |
OptionalNullable[int] | ➖ | Number of times the Tweet has been bookmarked | |
bookmarked |
OptionalNullable[bool] | ➖ | Indicates if the authenticating user has bookmarked this Tweet | |
community_note |
OptionalNullable[str] | ➖ | Community note associated with the Tweet | |
edit_tweet_ids |
List[str] | ➖ | A list of Tweet IDs for each edit of the Tweet | |
editable_until_msecs |
OptionalNullable[str] | ➖ | Timestamp for when the Tweet is no longer editable | |
edits_remaining |
OptionalNullable[str] | ➖ | Number of edits remaining for the Tweet | |
favorite_count |
OptionalNullable[int] | ➖ | Number of likes (favorites) for the Tweet | |
favorited |
OptionalNullable[bool] | ➖ | Indicates if the authenticating user has liked this Tweet | |
full_text |
OptionalNullable[str] | ➖ | The full text of the Tweet, especially for extended tweets | |
has_card |
OptionalNullable[bool] | ➖ | Indicates if the Tweet has a card attached | |
has_community_notes |
OptionalNullable[bool] | ➖ | Indicates if the Tweet has community notes | |
hashtags |
List[str] | ➖ | A list of hashtags mentioned in the Tweet | [ "AI", "Python" ] |
cashtags |
List[str] | ➖ | A list of cashtags (stock symbols) mentioned in the Tweet | [ "$TSLA" ] |
id |
OptionalNullable[str] | ➖ | The unique identifier for the Tweet (same as tweet_id) | |
in_reply_to |
OptionalNullable[str] | ➖ | ID of the Tweet this is a reply to | |
in_reply_to_user_id |
OptionalNullable[str] | ➖ | ID of the user this is a reply to | |
in_reply_to_screen_name |
OptionalNullable[str] | ➖ | Screen name of the user this is a reply to | |
is_edit_eligible |
OptionalNullable[bool] | ➖ | Indicates if the Tweet is eligible for editing | |
is_quote_status |
OptionalNullable[bool] | ➖ | Indicates if this Tweet is a quote of another Tweet | |
quoted_status_id_str |
OptionalNullable[str] | ➖ | The unique identifier for the Tweet that this is a quote of | |
is_translatable |
OptionalNullable[bool] | ➖ | Indicates if the Tweet is translatable | |
lang |
OptionalNullable[str] | ➖ | The BCP 47 language identifier for the Tweet's content | en |
media |
List[models.MediaModel] | ➖ | A list of media objects (photos, videos) attached to the Tweet | |
place |
OptionalNullable[str] | ➖ | The location associated with the Tweet | |
poll |
OptionalNullable[str] | ➖ | A poll attached to the Tweet | |
possibly_sensitive |
OptionalNullable[bool] | ➖ | Indicates if the Tweet may contain sensitive content | |
possibly_sensitive_editable |
OptionalNullable[bool] | ➖ | Indicates if the sensitive content flag is editable | |
quote |
OptionalNullable[models.TweetModel] | ➖ | The Tweet object being quoted | |
quote_count |
OptionalNullable[int] | ➖ | Number of times this Tweet has been quoted | |
related_tweets |
List[models.TweetModel] | ➖ | A list of related Tweets | |
replies |
List[models.TweetModel] | ➖ | A list of replies to this Tweet | |
reply_count |
OptionalNullable[int] | ➖ | Number of replies to this Tweet | |
reply_to |
OptionalNullable[models.TweetModel] | ➖ | The Tweet object this is a reply to | |
retweet_count |
OptionalNullable[int] | ➖ | Number of times this Tweet has been retweeted | |
retweeted_tweet |
OptionalNullable[models.TweetModel] | ➖ | The original Tweet object if this is a retweet | |
thread |
List[models.TweetModel] | ➖ | The conversation thread ID | |
thumbnail_title |
OptionalNullable[str] | ➖ | Title for the thumbnail in a card | |
thumbnail_url |
OptionalNullable[str] | ➖ | URL for the thumbnail in a card | |
urls |
List[str] | ➖ | A list of URLs included in the Tweet | |
user |
OptionalNullable[models.UserModel] | ➖ | The user who posted the Tweet | |
view_count |
OptionalNullable[str] | ➖ | Number of views for the Tweet | |
view_count_state |
OptionalNullable[str] | ➖ | State of the view count | |
status |
Dict[str, Any] | ➖ | Raw status dictionary | |
target_count |
OptionalNullable[int] | ➖ | The target count of items requested, for context |