diff --git a/archive-static-sites/x-archive/src/types.ts b/archive-static-sites/x-archive/src/types.ts
index 3d42cf09..0fc4dcf2 100644
--- a/archive-static-sites/x-archive/src/types.ts
+++ b/archive-static-sites/x-archive/src/types.ts
@@ -10,11 +10,23 @@ export type Tweet = {
isRetweeted: boolean;
text: string;
path: string;
+ quotedTweet: string | null;
archivedAt: string | null;
deletedTweetAt: string | null;
deletedRetweetAt: string | null;
deletedLikeAt: string | null;
deletedBookmarkAt: string | null;
+ media: {
+ mediaType: string;
+ url: string;
+ filename: string;
+ }[];
+ urls: {
+ url: string;
+ displayURL: string;
+ expandedURL: string;
+ }[];
+
};
export type User = {
diff --git a/src/account_x.test.ts b/src/account_x.test.ts
index af7be693..a332d21f 100644
--- a/src/account_x.test.ts
+++ b/src/account_x.test.ts
@@ -12,6 +12,8 @@ import {
} from './account_x';
import {
XTweetRow,
+ XTweetMediaRow,
+ XTweetURLRow,
XUserRow,
XConversationRow,
XConversationParticipantRow,
@@ -70,6 +72,10 @@ vi.mock('electron', () => ({
}
}));
+// Mock fetch
+const fetchMock = vi.fn();
+global.fetch = fetchMock;
+
// Import the local modules after stuff has been mocked
import { Account, ResponseData, XProgress } from './shared_types'
import { XAccountController } from './account_x'
@@ -174,6 +180,31 @@ class MockMITMController implements IMITMController {
}
];
}
+ if (testdata == "indexTweetsMedia") {
+ this.responseData = [
+ {
+ host: 'x.com',
+ url: '/i/api/graphql/pZXwh96YGRqmBbbxu7Vk2Q/UserTweetsAndReplies?variables=%7B%22userId%22%3A%221769426369526771712%22%2C%22count%22%3A20%2C%22includePromotedContent%22%3Atrue%2C%22withCommunity%22%3Atrue%2C%22withVoice%22%3Atrue%2C%22withV2Timeline%22%3Atrue%7D&features=%7B%22profile_label_improvements_pcf_label_in_post_enabled%22%3Atrue%2C%22rweb_tipjar_consumption_enabled%22%3Atrue%2C%22responsive_web_graphql_exclude_directive_enabled%22%3Atrue%2C%22verified_phone_label_enabled%22%3Afalse%2C%22creator_subscriptions_tweet_preview_api_enabled%22%3Atrue%2C%22responsive_web_graphql_timeline_navigation_enabled%22%3Atrue%2C%22responsive_web_graphql_skip_user_profile_image_extensions_enabled%22%3Afalse%2C%22premium_content_api_read_enabled%22%3Afalse%2C%22communities_web_enable_tweet_community_results_fetch%22%3Atrue%2C%22c9s_tweet_anatomy_moderator_badge_enabled%22%3Atrue%2C%22responsive_web_grok_analyze_button_fetch_trends_enabled%22%3Afalse%2C%22responsive_web_grok_analyze_post_followups_enabled%22%3Atrue%2C%22responsive_web_jetfuel_frame%22%3Afalse%2C%22responsive_web_grok_share_attachment_enabled%22%3Atrue%2C%22articles_preview_enabled%22%3Atrue%2C%22responsive_web_edit_tweet_api_enabled%22%3Atrue%2C%22graphql_is_translatable_rweb_tweet_is_translatable_enabled%22%3Atrue%2C%22view_counts_everywhere_api_enabled%22%3Atrue%2C%22longform_notetweets_consumption_enabled%22%3Atrue%2C%22responsive_web_twitter_article_tweet_consumption_enabled%22%3Atrue%2C%22tweet_awards_web_tipping_enabled%22%3Afalse%2C%22responsive_web_grok_analysis_button_from_backend%22%3Atrue%2C%22creator_subscriptions_quote_tweet_preview_enabled%22%3Afalse%2C%22freedom_of_speech_not_reach_fetch_enabled%22%3Atrue%2C%22standardized_nudges_misinfo%22%3Atrue%2C%22tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled%22%3Atrue%2C%22rweb_video_timestamps_enabled%22%3Atrue%2C%22longform_notetweets_rich_text_read_enabled%22%3Atrue%2C%22longform_notetweets_inline_media_enabled%22%3Atrue%2C%22responsive_web_grok_image_annotation_enabled%22%3Afalse%2C%22responsive_web_enhance_cards_enabled%22%3Afalse%7D&fieldToggles=%7B%22withArticlePlainText%22%3Afalse%7D',
+ status: 200,
+ headers: {},
+ body: fs.readFileSync(path.join(__dirname, '..', 'testdata', 'XAPIUserTweetsAndRepliesMedia.json'), 'utf8'),
+ processed: false
+ }
+ ];
+ }
+ if (testdata == "indexTweetsLinks") {
+ this.responseData = [
+ {
+ host: 'x.com',
+ url: '/i/api/graphql/pZXwh96YGRqmBbbxu7Vk2Q/UserTweetsAndReplies?variables=%7B%22userId%22%3A%221769426369526771712%22%2C%22count%22%3A20%2C%22includePromotedContent%22%3Atrue%2C%22withCommunity%22%3Atrue%2C%22withVoice%22%3Atrue%2C%22withV2Timeline%22%3Atrue%7D&features=%7B%22profile_label_improvements_pcf_label_in_post_enabled%22%3Atrue%2C%22rweb_tipjar_consumption_enabled%22%3Atrue%2C%22responsive_web_graphql_exclude_directive_enabled%22%3Atrue%2C%22verified_phone_label_enabled%22%3Afalse%2C%22creator_subscriptions_tweet_preview_api_enabled%22%3Atrue%2C%22responsive_web_graphql_timeline_navigation_enabled%22%3Atrue%2C%22responsive_web_graphql_skip_user_profile_image_extensions_enabled%22%3Afalse%2C%22premium_content_api_read_enabled%22%3Afalse%2C%22communities_web_enable_tweet_community_results_fetch%22%3Atrue%2C%22c9s_tweet_anatomy_moderator_badge_enabled%22%3Atrue%2C%22responsive_web_grok_analyze_button_fetch_trends_enabled%22%3Afalse%2C%22responsive_web_grok_analyze_post_followups_enabled%22%3Atrue%2C%22responsive_web_jetfuel_frame%22%3Afalse%2C%22responsive_web_grok_share_attachment_enabled%22%3Atrue%2C%22articles_preview_enabled%22%3Atrue%2C%22responsive_web_edit_tweet_api_enabled%22%3Atrue%2C%22graphql_is_translatable_rweb_tweet_is_translatable_enabled%22%3Atrue%2C%22view_counts_everywhere_api_enabled%22%3Atrue%2C%22longform_notetweets_consumption_enabled%22%3Atrue%2C%22responsive_web_twitter_article_tweet_consumption_enabled%22%3Atrue%2C%22tweet_awards_web_tipping_enabled%22%3Afalse%2C%22responsive_web_grok_analysis_button_from_backend%22%3Atrue%2C%22creator_subscriptions_quote_tweet_preview_enabled%22%3Afalse%2C%22freedom_of_speech_not_reach_fetch_enabled%22%3Atrue%2C%22standardized_nudges_misinfo%22%3Atrue%2C%22tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled%22%3Atrue%2C%22rweb_video_timestamps_enabled%22%3Atrue%2C%22longform_notetweets_rich_text_read_enabled%22%3Atrue%2C%22longform_notetweets_inline_media_enabled%22%3Atrue%2C%22responsive_web_grok_image_annotation_enabled%22%3Afalse%2C%22responsive_web_enhance_cards_enabled%22%3Afalse%7D&fieldToggles=%7B%22withArticlePlainText%22%3Afalse%7D',
+ status: 200,
+ headers: {},
+ body: fs.readFileSync(path.join(__dirname, '..', 'testdata', 'XAPIUserTweetsAndRepliesLinks.json'), 'utf8'),
+ processed: false
+ }
+ ];
+ }
+
}
setAutomationErrorReportTestdata(filename: string) {
const testData = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'testdata', 'automation-errors', filename), 'utf8'));
@@ -210,13 +241,17 @@ afterEach(() => {
controller.cleanup();
}
- // Delete databases from disk
- fs.readdirSync(getSettingsPath()).forEach(file => {
- fs.unlinkSync(path.join(getSettingsPath(), file));
- });
- fs.readdirSync(getAccountDataPath("X", "test")).forEach(file => {
- fs.unlinkSync(path.join(getAccountDataPath("X", "test"), file));
- });
+ // Delete data from disk
+ const settingsPath = getSettingsPath();
+ const accountDataPath = getAccountDataPath("X", "test");
+
+ if (fs.existsSync(settingsPath)) {
+ fs.rmSync(settingsPath, { recursive: true, force: true });
+ }
+
+ if (fs.existsSync(accountDataPath)) {
+ fs.rmSync(accountDataPath, { recursive: true, force: true });
+ }
});
// Fixtures
@@ -728,6 +763,57 @@ test("XAccountController.indexParsedTweets() should index bookmarks", async () =
expect(rows.length).toBe(14);
})
+test("XAccountController.indexParsedTweets() should index and download media", async () => {
+ mitmController.setTestdata("indexTweetsMedia");
+ if (controller.account) {
+ controller.account.username = 'nexamind91326';
+ }
+
+ await controller.indexParseTweets()
+
+ // Verify the video tweet
+ let tweetRows: XTweetRow[] = database.exec(controller.db, "SELECT * FROM tweet WHERE tweetID=?", ['1890513848811090236'], "all") as XTweetRow[];
+ expect(tweetRows.length).toBe(1);
+ expect(tweetRows[0].tweetID).toBe('1890513848811090236');
+ expect(tweetRows[0].text).toBe('check out this video i found https://t.co/MMfXeoZEdi');
+
+ let mediaRows: XTweetMediaRow[] = database.exec(controller.db, "SELECT * FROM tweet_media WHERE tweetID=?", ['1890513848811090236'], "all") as XTweetMediaRow[];
+ expect(mediaRows.length).toBe(1);
+ expect(mediaRows[0].mediaType).toBe('video');
+ expect(mediaRows[0].filename).toBe('7_1890513743144185859.mp4');
+ expect(mediaRows[0].startIndex).toBe(29);
+ expect(mediaRows[0].endIndex).toBe(52);
+
+ // Verify the image tweet
+ tweetRows = database.exec(controller.db, "SELECT * FROM tweet WHERE tweetID=?", ['1890512076189114426'], "all") as XTweetRow[];
+ expect(tweetRows.length).toBe(1);
+ expect(tweetRows[0].tweetID).toBe('1890512076189114426');
+ expect(tweetRows[0].text).toBe('what a pretty photo https://t.co/eBFfDPOPz6');
+
+ mediaRows = database.exec(controller.db, "SELECT * FROM tweet_media WHERE tweetID=?", ['1890512076189114426'], "all") as XTweetMediaRow[];
+ expect(mediaRows.length).toBe(1);
+ expect(mediaRows[0].mediaType).toBe('photo');
+ expect(mediaRows[0].filename).toBe('3_1890512052424466432.jpg');
+ expect(mediaRows[0].startIndex).toBe(20);
+ expect(mediaRows[0].endIndex).toBe(43);
+})
+
+test("XAccountController.indexParsedTweets() should index and parse links", async () => {
+ mitmController.setTestdata("indexTweetsLinks");
+ if (controller.account) {
+ controller.account.username = 'nexamind91326';
+ }
+
+ await controller.indexParseTweets()
+
+ // Verify the link tweet
+ const linkRows: XTweetURLRow[] = database.exec(controller.db, "SELECT * FROM tweet_url WHERE tweetID=?", ['1891186072995946783'], "all") as XTweetURLRow[];
+ expect(linkRows.length).toBe(3);
+ expect(linkRows[0].expandedURL).toBe('https://en.wikipedia.org/wiki/Moon');
+ expect(linkRows[1].expandedURL).toBe('https://en.wikipedia.org/wiki/Sun');
+ expect(linkRows[2].expandedURL).toBe('https://x.com/nexamind91326/status/1890513848811090236');
+})
+
// Testing the X migrations
test("test migration: 20241016_add_config", async () => {
diff --git a/src/account_x/ipc.ts b/src/account_x/ipc.ts
index 22a33727..102fb21b 100644
--- a/src/account_x/ipc.ts
+++ b/src/account_x/ipc.ts
@@ -3,7 +3,6 @@ import { ipcMain } from 'electron'
import { XAccountController } from './x_account_controller';
import {
- ArchiveInfo,
XAccount,
XJob,
XProgress,
@@ -212,24 +211,6 @@ export const defineIPCX = () => {
}
});
- ipcMain.handle('X:openFolder', async (_, accountID: number, folderName: string) => {
- try {
- const controller = getXAccountController(accountID);
- await controller.openFolder(folderName);
- } catch (error) {
- throw new Error(packageExceptionForReport(error as Error));
- }
- });
-
- ipcMain.handle('X:getArchiveInfo', async (_, accountID: number): Promise
=> {
- try {
- const controller = getXAccountController(accountID);
- return await controller.getArchiveInfo();
- } catch (error) {
- throw new Error(packageExceptionForReport(error as Error));
- }
- });
-
ipcMain.handle('X:resetRateLimitInfo', async (_, accountID: number): Promise => {
try {
const controller = getXAccountController(accountID);
diff --git a/src/account_x/types.ts b/src/account_x/types.ts
index 80c28970..31f80fb4 100644
--- a/src/account_x/types.ts
+++ b/src/account_x/types.ts
@@ -15,6 +15,27 @@ export interface XJobRow {
error: string | null;
}
+export interface XTweetMediaRow {
+ id: number;
+ mediaID: string;
+ mediaType: string;
+ tweetID: string;
+ url: string;
+ filename: string;
+ startIndex: number;
+ endIndex: number;
+}
+
+export interface XTweetURLRow {
+ id: number;
+ url: string;
+ displayURL: string;
+ expandedURL: string;
+ startIndex: number;
+ endIndex: number;
+ tweetID: string;
+}
+
export interface XTweetRow {
id: number;
username: string;
@@ -36,6 +57,12 @@ export interface XTweetRow {
deletedRetweetAt: string | null;
deletedLikeAt: string | null;
deletedBookmarkAt: string | null;
+ hasMedia: boolean;
+ isReply: boolean;
+ replyTweetID: string | null;
+ replyUserID: string | null;
+ isQuote: boolean;
+ quotedTweet: string | null;
}
export interface XUserRow {
@@ -122,6 +149,51 @@ export function convertTweetRowToXTweetItemArchive(row: XTweetRow): XTweetItemAr
// Index tweets
+export interface XAPILegacyTweetMediaVideoVariant {
+ bitrate?: number;
+ content_type: string;
+ url: string;
+}
+
+export interface XAPILegacyTweetMedia {
+ display_url: string;
+ expanded_url: string;
+ id_str: string;
+ indices: number[];
+ media_key: string;
+ media_url_https: string;
+ type: string;
+ url: string;
+ additional_media_info: any;
+ ext_media_availability: any;
+ features?: any;
+ sizes: any;
+ original_info: any;
+ allow_download_status?: any;
+ video_info?: {
+ aspect_ratio: number[];
+ duration_millis: number;
+ variants: XAPILegacyTweetMediaVideoVariant[];
+ };
+ media_results?: any;
+}
+
+export interface XAPILegacyURL {
+ display_url: string;
+ expanded_url: string;
+ url: string;
+ indices: number[];
+}
+
+export interface XAPILegacyEntities {
+ hashtags: any[];
+ symbols: any[];
+ timestamps: any[];
+ urls: XAPILegacyURL[];
+ media: XAPILegacyTweetMedia[];
+ user_mentions: any[];
+}
+
export interface XAPILegacyTweet {
bookmark_count: number;
bookmarked: boolean;
@@ -142,7 +214,9 @@ export interface XAPILegacyTweet {
retweeted: boolean;
user_id_str: string;
id_str: string;
- entities: any;
+ entities?: XAPILegacyEntities;
+ extended_entities?: XAPILegacyEntities;
+ quoted_status_permalink?: any;
}
export interface XAPILegacyUser {
@@ -488,10 +562,11 @@ export interface XArchiveTweet {
edit_info: any;
retweeted: boolean;
source: string;
- entities: any;
+ entities: XAPILegacyEntities;
+ extended_entities: XAPILegacyEntities;
display_text_range: any;
favorite_count: number;
- in_reply_to_status_id_str?: string;
+ in_reply_to_status_id_str: string | null;
id_str: string;
in_reply_to_user_id?: string;
truncated: boolean;
@@ -504,7 +579,7 @@ export interface XArchiveTweet {
full_text: string;
lang: string;
in_reply_to_screen_name?: string;
- in_reply_to_user_id_str?: string;
+ in_reply_to_user_id_str: string | null;
}
export interface XArchiveTweetContainer {
diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts
index 58b47fcf..c8cbf1db 100644
--- a/src/account_x/x_account_controller.ts
+++ b/src/account_x/x_account_controller.ts
@@ -43,6 +43,8 @@ import { IMITMController } from '../mitm';
import {
XJobRow,
XTweetRow,
+ XTweetMediaRow,
+ XTweetURLRow,
XUserRow,
XConversationRow,
XMessageRow,
@@ -53,6 +55,9 @@ import {
// X API types
XAPILegacyUser,
XAPILegacyTweet,
+ XAPILegacyTweetMedia,
+ XAPILegacyTweetMediaVideoVariant,
+ XAPILegacyURL,
XAPIData,
XAPIBookmarksData,
XAPITimeline,
@@ -75,6 +80,33 @@ import {
} from './types'
import * as XArchiveTypes from '../../archive-static-sites/x-archive/src/types';
+const getMediaURL = (media: XAPILegacyTweetMedia): string => {
+ // Get the HTTPS URL of the media -- this works for photos
+ let mediaURL = media["media_url_https"];
+
+ // If it's a video, set mediaURL to the video variant with the highest bitrate
+ if (media["type"] == "video") {
+ let highestBitrate = 0;
+ if (media["video_info"] && media["video_info"]["variants"]) {
+ media["video_info"]["variants"].forEach((variant: XAPILegacyTweetMediaVideoVariant) => {
+ if (variant["bitrate"] && variant["bitrate"] > highestBitrate) {
+ highestBitrate = variant["bitrate"];
+ mediaURL = variant["url"];
+
+ // Stripe query parameters from the URL.
+ // For some reason video variants end with `?tag=12`, and when we try downloading with that
+ // it responds with 404.
+ const queryIndex = mediaURL.indexOf("?");
+ if (queryIndex > -1) {
+ mediaURL = mediaURL.substring(0, queryIndex);
+ }
+ }
+ });
+ };
+ }
+ return mediaURL;
+};
+
export class XAccountController {
private accountUUID: string = "";
// Making this public so it can be accessed in tests
@@ -315,6 +347,53 @@ export class XAccountController {
`UPDATE tweet SET deletedLikeAt = deletedAt WHERE deletedAt IS NOT NULL AND isLiked = 1;`
]
},
+ // Add hasMedia to the tweet table, and create tweet_media table
+ {
+ name: "20250206_add_hasMedia_and_tweet_media",
+ sql: [
+ `CREATE TABLE tweet_media (
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
+ mediaID TEXT NOT NULL UNIQUE,
+ mediaType TEXT NOT NULL,
+ tweetID TEXT NOT NULL
+ );`,
+ `ALTER TABLE tweet ADD COLUMN hasMedia BOOLEAN;`,
+ `UPDATE tweet SET hasMedia = 0;`
+ ]
+ },
+ // Add isReply, replyTweetID, replyUserID, isQuote and quotedTweet to the tweet table
+ {
+ name: "20250206_add_reply_and_quote_fields",
+ sql: [
+ `ALTER TABLE tweet ADD COLUMN isReply BOOLEAN;`,
+ `ALTER TABLE tweet ADD COLUMN replyTweetID TEXT;`,
+ `ALTER TABLE tweet ADD COLUMN replyUserID TEXT;`,
+ `ALTER TABLE tweet ADD COLUMN isQuote BOOLEAN;`,
+ `ALTER TABLE tweet ADD COLUMN quotedTweet TEXT;`,
+ `UPDATE tweet SET isReply = 0;`,
+ `UPDATE tweet SET isQuote = 0;`
+ ]
+ },
+ // Add tweet_url table. Add url and indices to tweet_media table
+ {
+ name: "20250207_add_tweet_urls_and_more_tweet_media_fields",
+ sql: [
+ `CREATE TABLE tweet_url (
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
+ url TEXT NOT NULL,
+ displayURL TEXT NOT NULL,
+ expandedURL TEXT NOT NULL,
+ startIndex INTEGER NOT NULL,
+ endIndex INTEGER NOT NULL,
+ tweetID TEXT NOT NULL,
+ UNIQUE(url, tweetID)
+ );`,
+ `ALTER TABLE tweet_media ADD COLUMN url TEXT;`,
+ `ALTER TABLE tweet_media ADD COLUMN filename TEXT;`,
+ `ALTER TABLE tweet_media ADD COLUMN startIndex INTEGER;`,
+ `ALTER TABLE tweet_media ADD COLUMN endIndex INTEGER;`
+ ]
+ },
])
log.info("XAccountController.initDB: database initialized");
}
@@ -459,8 +538,20 @@ export class XAccountController {
exec(this.db, 'DELETE FROM tweet WHERE tweetID = ?', [tweetLegacy["id_str"]]);
}
+ // Check if tweet has media and call indexTweetMedia
+ let hasMedia: boolean = false;
+ if (tweetLegacy.extended_entities?.media && tweetLegacy.extended_entities?.media.length) {
+ hasMedia = true;
+ this.indexTweetMedia(tweetLegacy)
+ }
+
+ // Check if tweet has URLs and index it
+ if (tweetLegacy.entities?.urls && tweetLegacy.entities?.urls.length) {
+ this.indexTweetURLs(tweetLegacy)
+ }
+
// Add the tweet
- exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [
+ exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, isReply, replyTweetID, replyUserID, isQuote, quotedTweet, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [
userLegacy["screen_name"],
tweetLegacy["id_str"],
tweetLegacy["conversation_id_str"],
@@ -474,6 +565,12 @@ export class XAccountController {
tweetLegacy["bookmarked"] ? 1 : 0,
tweetLegacy["full_text"],
`${userLegacy['screen_name']}/status/${tweetLegacy['id_str']}`,
+ hasMedia ? 1 : 0,
+ tweetLegacy["in_reply_to_status_id_str"] ? 1 : 0,
+ tweetLegacy["in_reply_to_status_id_str"],
+ tweetLegacy["in_reply_to_user_id_str"],
+ tweetLegacy["is_quote_status"] ? 1 : 0,
+ tweetLegacy["quoted_status_permalink"] ? tweetLegacy["quoted_status_permalink"]["expanded"] : null,
new Date(),
]);
@@ -653,6 +750,91 @@ export class XAccountController {
return this.progress;
}
+ async saveTweetMedia(mediaPath: string, filename: string) {
+ if (!this.account) {
+ throw new Error("Account not found");
+ }
+
+ // Create path to store tweet media if it doesn't exist already
+ const accountDataPath = getAccountDataPath("X", this.account.username);
+ const outputPath = path.join(accountDataPath, "Tweet Media");
+ if (!fs.existsSync(outputPath)) {
+ fs.mkdirSync(outputPath);
+ }
+
+ // Download and save media from the mediaPath
+ try {
+ const response = await fetch(mediaPath, {});
+ if (!response.ok) {
+ return "";
+ }
+
+ const arrayBuffer = await response.arrayBuffer();
+ const buffer = Buffer.from(arrayBuffer);
+ const outputFileName = path.join(outputPath, filename);
+ fs.createWriteStream(outputFileName).write(buffer);
+ return outputFileName;
+ } catch {
+ return "";
+ }
+ }
+
+ indexTweetMedia(tweetLegacy: XAPILegacyTweet) {
+ log.debug("XAccountController.indexMedia");
+
+ // Loop over all media items
+ tweetLegacy.extended_entities?.media.forEach((media: XAPILegacyTweetMedia) => {
+ const mediaURL = getMediaURL(media);
+ const mediaExtension = mediaURL.substring(mediaURL.lastIndexOf(".") + 1);
+
+ // Download media locally
+ const filename = `${media["media_key"]}.${mediaExtension}`;
+ this.saveTweetMedia(mediaURL, filename);
+
+ // Have we seen this media before?
+ const existing: XTweetMediaRow[] = exec(this.db, 'SELECT * FROM tweet_media WHERE mediaID = ?', [media["media_key"]], "all") as XTweetMediaRow[];
+ if (existing.length > 0) {
+ // Delete it, so we can re-add it
+ exec(this.db, 'DELETE FROM tweet_media WHERE mediaID = ?', [media["media_key"]]);
+ }
+
+ // Index media information in tweet_media table
+ exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, url, filename, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?, ?)', [
+ media["media_key"],
+ media["type"],
+ media["url"],
+ filename,
+ media["indices"]?.[0],
+ media["indices"]?.[1],
+ tweetLegacy["id_str"],
+ ]);
+ })
+ }
+
+ indexTweetURLs(tweetLegacy: XAPILegacyTweet) {
+ log.debug("XAccountController.indexTweetURL");
+
+ // Loop over all URL items
+ tweetLegacy.entities?.urls.forEach((url: XAPILegacyURL) => {
+ // Have we seen this URL before?
+ const existing: XTweetURLRow[] = exec(this.db, 'SELECT * FROM tweet_url WHERE url = ? AND tweetID = ?', [url["url"], tweetLegacy["id_str"]], "all") as XTweetURLRow[];
+ if (existing.length > 0) {
+ // Delete it, so we can re-add it
+ exec(this.db, 'DELETE FROM tweet_url WHERE url = ? AND tweetID = ?', [url["url"], tweetLegacy["id_str"]]);
+ }
+
+ // Index url information in tweet_url table
+ exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [
+ url["url"],
+ url["display_url"],
+ url["expanded_url"],
+ url["indices"]?.[0],
+ url["indices"]?.[1],
+ tweetLegacy["id_str"],
+ ]);
+ })
+ }
+
async getProfileImageDataURI(user: XAPIUser): Promise {
if (!user.profile_image_url_https) {
return "";
@@ -1109,6 +1291,20 @@ export class XAccountController {
"all"
) as XTweetRow[];
+ // Load all media and URLs, to process later
+ const media: XTweetMediaRow[] = exec(
+ this.db,
+ "SELECT * FROM tweet_media",
+ [],
+ "all"
+ ) as XTweetMediaRow[];
+ const urls: XTweetURLRow[] = exec(
+ this.db,
+ "SELECT * FROM tweet_url",
+ [],
+ "all"
+ ) as XTweetURLRow[];
+
// Users
const users: XUserRow[] = exec(
this.db,
@@ -1142,7 +1338,7 @@ export class XAccountController {
const accountUserID = accountUser?.userID;
const tweetRowToArchiveTweet = (tweet: XTweetRow): XArchiveTypes.Tweet => {
- return {
+ const archiveTweet: XArchiveTypes.Tweet = {
tweetID: tweet.tweetID,
username: tweet.username,
createdAt: tweet.createdAt,
@@ -1154,12 +1350,36 @@ export class XAccountController {
isRetweeted: tweet.isRetweeted,
text: tweet.text,
path: tweet.path,
+ quotedTweet: tweet.quotedTweet,
archivedAt: tweet.archivedAt,
deletedTweetAt: tweet.deletedTweetAt,
deletedRetweetAt: tweet.deletedRetweetAt,
deletedLikeAt: tweet.deletedLikeAt,
deletedBookmarkAt: tweet.deletedBookmarkAt,
- }
+ media: [],
+ urls: [],
+ };
+ // Loop through media and URLs
+ media.forEach((media) => {
+ if (media.tweetID == tweet.tweetID) {
+ archiveTweet.media.push({
+ mediaType: media.mediaType,
+ url: media.url,
+ filename: media.filename,
+ });
+ }
+ });
+ urls.forEach((url) => {
+ if (url.tweetID == tweet.tweetID) {
+ archiveTweet.urls.push({
+ url: url.url,
+ displayURL: url.displayURL,
+ expandedURL: url.expandedURL,
+ });
+ }
+ });
+
+ return archiveTweet
}
// Build the archive object
@@ -1721,7 +1941,6 @@ export class XAccountController {
return null;
}
-
// Unzip twitter archive to the account data folder using unzipper
// Return unzipped path if success, else null.
async unzipXArchive(archiveZipPath: string): Promise {
@@ -1749,6 +1968,12 @@ export class XAccountController {
// Return null on success, and a string (error message) on error
async verifyXArchive(archivePath: string): Promise {
+ // If archivePath contains just one folder and no files, update archivePath to point to that inner folder
+ const archiveContents = fs.readdirSync(archivePath);
+ if (archiveContents.length === 1 && fs.lstatSync(path.join(archivePath, archiveContents[0])).isDirectory()) {
+ archivePath = path.join(archivePath, archiveContents[0]);
+ }
+
const foldersToCheck = [
archivePath,
path.join(archivePath, "data"),
@@ -1799,6 +2024,12 @@ export class XAccountController {
let importCount = 0;
let skipCount = 0;
+ // If archivePath contains just one folder and no files, update archivePath to point to that inner folder
+ const archiveContents = fs.readdirSync(archivePath);
+ if (archiveContents.length === 1 && fs.lstatSync(path.join(archivePath, archiveContents[0])).isDirectory()) {
+ archivePath = path.join(archivePath, archiveContents[0]);
+ }
+
// Load the username
let username: string;
try {
@@ -1865,24 +2096,41 @@ export class XAccountController {
// Is this tweet already there?
const existingTweet = exec(this.db, 'SELECT * FROM tweet WHERE tweetID = ?', [tweet.id_str], "get") as XTweetRow;
if (existingTweet) {
- skipCount++;
- } else {
- // Import it
- exec(this.db, 'INSERT INTO tweet (username, tweetID, createdAt, likeCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [
- username,
- tweet.id_str,
- new Date(tweet.created_at),
- tweet.favorite_count,
- tweet.retweet_count,
- tweet.favorited ? 1 : 0,
- tweet.retweeted ? 1 : 0,
- 0,
- tweet.full_text,
- `${username}/status/${tweet.id_str}`,
- new Date(),
- ]);
- importCount++;
+ // Delete the existing tweet to re-import
+ exec(this.db, 'DELETE FROM tweet WHERE tweetID = ?', [tweet.id_str]);
+ }
+
+ // Check if tweet has media and call importXArchiveMedia
+ let hasMedia: boolean = false;
+ if (tweet.extended_entities?.media && tweet.extended_entities?.media?.length) {
+ hasMedia = true;
+ this.importXArchiveMedia(tweet, archivePath);
}
+
+ // Check if tweet has urls and call importXArchiveURLs
+ if (tweet.entities?.urls && tweet.entities?.urls?.length) {
+ this.importXArchiveURLs(tweet);
+ }
+
+ // Import it
+ exec(this.db, 'INSERT INTO tweet (username, tweetID, createdAt, likeCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, isReply, replyTweetID, replyUserID, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [
+ username,
+ tweet.id_str,
+ new Date(tweet.created_at),
+ tweet.favorite_count,
+ tweet.retweet_count,
+ tweet.favorited ? 1 : 0,
+ tweet.retweeted ? 1 : 0,
+ 0,
+ tweet.full_text,
+ `${username}/status/${tweet.id_str}`,
+ hasMedia ? 1 : 0,
+ tweet.in_reply_to_status_id_str ? 1 : 0,
+ tweet.in_reply_to_status_id_str,
+ tweet.in_reply_to_user_id_str,
+ new Date(),
+ ]);
+ importCount++;
});
} catch (e) {
return {
@@ -1994,146 +2242,6 @@ export class XAccountController {
};
}
- // // Import direct message groups
- // else if (dataType == "dmGroups" || dataType == "dms") {
- // let dmsFilename: string;
- // if (dataType == "dmGroups") {
- // dmsFilename = "direct-messages-group.js";
- // if (!fs.existsSync(dmsFilename)) {
- // // Old X archives might put it in direct-message-group.js
- // dmsFilename = path.join(archivePath, "data", "direct-message-group.js");
- // if (!fs.existsSync(dmsFilename)) {
- // return {
- // status: "error",
- // errorMessage: "direct-messages-group.js",
- // importCount: importCount,
- // skipCount: skipCount,
- // };
- // }
- // }
- // } else {
- // dmsFilename = "direct-messages.js";
- // if (!fs.existsSync(dmsFilename)) {
- // // Old X archives might put it in direct-message.js
- // dmsFilename = path.join(archivePath, "data", "direct-message.js");
- // if (!fs.existsSync(dmsFilename)) {
- // return {
- // status: "error",
- // errorMessage: "direct-messages.js",
- // importCount: importCount,
- // skipCount: skipCount,
- // };
- // }
- // }
- // }
-
- // // Load the data
- // const dmsPath = path.join(archivePath, "data", dmsFilename);
- // let dmsData: XArchiveDMConversation[];
- // try {
- // const dmsFile = fs.readFileSync(dmsPath, 'utf8');
- // dmsData = JSON.parse(dmsFile.slice(dmsFile.indexOf('[')));
- // } catch (e) {
- // return {
- // status: "error",
- // errorMessage: `Error parsing JSON in ${dmsFilename}`,
- // importCount: importCount,
- // skipCount: skipCount,
- // };
- // }
-
- // // Loop through the DM conversations/messages and add them to the database
- // try {
- // dmsData.forEach((conversation) => {
- // // Find the min and max entry ID
- // let minEntryID: string | null = null, maxEntryID: string | null = null;
- // // Find the first messageCreate message
- // for (let i = 0; i < conversation.dmConversation.messages.length; i++) {
- // if (conversation.dmConversation.messages[i].messageCreate) {
- // minEntryID = conversation.dmConversation.messages[i].messageCreate?.id || null;
- // break;
- // }
- // }
- // // Find the last messageCreate message
- // for (let i = conversation.dmConversation.messages.length - 1; i >= 0; i--) {
- // if (conversation.dmConversation.messages[i].messageCreate) {
- // maxEntryID = conversation.dmConversation.messages[i].messageCreate?.id || null;
- // break;
- // }
- // }
-
- // // Is this conversation already there?
- // const existingConversation = exec(this.db, 'SELECT * FROM conversation WHERE conversationID = ?', [conversation.dmConversation.conversationId], "get") as XConversationRow;
- // if (existingConversation) {
- // // Update
- // const newMinEntryID = minEntryID ? minEntryID : existingConversation.minEntryID;
- // const newMaxEntryID = maxEntryID ? maxEntryID : existingConversation.maxEntryID;
- // exec(this.db, 'UPDATE conversation SET minEntryID = ?, maxEntryID = ?, updatedInDatabaseAt = ? WHERE conversationID = ?', [newMinEntryID, newMaxEntryID, new Date(), conversation.dmConversation.conversationId]);
- // } else {
- // // Create
- // exec(this.db, 'INSERT INTO conversation (conversationID, type, minEntryID, maxEntryID, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?)', [
- // conversation.dmConversation.conversationId,
- // dataType == "dmGroups" ? 'GROUP_DM' : 'ONE_TO_ONE',
- // minEntryID,
- // maxEntryID,
- // new Date(),
- // ]);
- // }
-
- // // Keep track of participant user IDs
- // const participantUserIDs: string[] = [];
-
- // // Add the messages
- // conversation.dmConversation.messages.forEach((message => {
- // if (message.messageCreate) {
- // // Does this message exist?
- // const existingMessage = exec(this.db, 'SELECT * FROM message WHERE messageID = ?', [message.messageCreate.id], "get") as XMessageRow;
- // if (existingMessage) {
- // skipCount++;
- // } else {
- // // Import it
- // exec(this.db, 'INSERT INTO message (messageID, conversationID, createdAt, senderID, text) VALUES (?, ?, ?, ?, ?)', [
- // message.messageCreate.id,
- // conversation.dmConversation.conversationId,
- // message.messageCreate.createdAt,
- // message.messageCreate.senderId,
- // message.messageCreate.text
- // ]);
- // importCount++;
-
- // // Add this to the list of participant user IDs, if it's not already there
- // if (participantUserIDs.includes(message.messageCreate.senderId) == false) {
- // participantUserIDs.push(message.messageCreate.senderId);
- // }
- // }
- // }
- // }))
-
- // // Add the participants
- // participantUserIDs.forEach((userID) => {
- // const existingParticipant = exec(this.db, 'SELECT * FROM conversation_participant WHERE conversationID = ? AND userID = ?', [conversation.dmConversation.conversationId, userID], "get") as XConversationParticipantRow;
- // if (!existingParticipant) {
- // exec(this.db, 'INSERT INTO conversation_participant (conversationID, userID) VALUES (?, ?)', [conversation.dmConversation.conversationId, userID]);
- // }
- // });
- // });
- // } catch (e) {
- // return {
- // status: "error",
- // errorMessage: "Error importing direct messages: " + e,
- // importCount: importCount,
- // skipCount: skipCount,
- // };
- // }
-
- // return {
- // status: "success",
- // errorMessage: "",
- // importCount: importCount,
- // skipCount: skipCount,
- // };
- // }
-
return {
status: "error",
errorMessage: "Invalid data type.",
@@ -2142,6 +2250,102 @@ export class XAccountController {
};
}
+ importXArchiveMedia(tweet: XArchiveTweet, archivePath: string) {
+ // Loop over all media items
+ tweet.extended_entities?.media.forEach((media: XAPILegacyTweetMedia) => {
+ const existingMedia = exec(this.db, 'SELECT * FROM tweet_media WHERE mediaID = ?', [media.id_str], "get") as XTweetMediaRow;
+ if (existingMedia) {
+ log.debug(`XAccountController.importXArchiveMedia: media already exists: ${media.id_str}`);
+ return;
+ }
+ const filename = this.saveXArchiveMedia(tweet.id_str, media, archivePath);
+ if (filename) {
+ // Index media information in tweet_media table
+ exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, url, filename, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?, ?)', [
+ media.id_str,
+ media.type,
+ media.url,
+ filename,
+ media.indices?.[0],
+ media.indices?.[1],
+ tweet.id_str,
+ ]);
+ }
+ });
+ }
+
+ saveXArchiveMedia(tweetID: string, media: XAPILegacyTweetMedia, archivePath: string): string | null {
+ if (!this.account) {
+ throw new Error("Account not found");
+ }
+
+ log.info(`XAccountController.saveXArchiveMedia: saving media: ${JSON.stringify(media)}`);
+
+ const mediaURL = getMediaURL(media);
+ const mediaExtension = mediaURL.substring(mediaURL.lastIndexOf(".") + 1);
+ const filename = `${media["id_str"]}.${mediaExtension}`;
+
+ let archiveMediaFilename = null;
+ if (media.type === "video" && media.video_info?.variants) {
+ // For videos, find the highest quality MP4 variant
+ const mp4Variants = media.video_info.variants
+ .filter(v => v.content_type === "video/mp4")
+ .sort((a, b) => (b.bitrate || 0) - (a.bitrate || 0));
+
+ if (mp4Variants.length > 0) {
+ const highestQualityVariant = mp4Variants[0];
+ const videoFilename = highestQualityVariant.url.split('/').pop()?.split('?')[0];
+ if (videoFilename) {
+ archiveMediaFilename = path.join(archivePath, "data", "tweets_media", `${tweetID}-${videoFilename}`);
+ }
+ }
+ } else {
+ // For non-videos
+ archiveMediaFilename = path.join(archivePath, "data", "tweets_media", `${tweetID}-${mediaURL.substring(mediaURL.lastIndexOf("/") + 1)}`);
+ }
+
+ // If file doesn't exist in archive, don't save information in db
+ if (!archiveMediaFilename || !fs.existsSync(archiveMediaFilename)) {
+ log.info(`XAccountController.saveXArchiveMedia: media file not found: ${archiveMediaFilename}`);
+ return null;
+ }
+
+ // Create path to store tweet media if it doesn't exist already
+ const accountDataPath = getAccountDataPath("X", this.account.username);
+ const outputPath = path.join(accountDataPath, "Tweet Media");
+ if (!fs.existsSync(outputPath)) {
+ fs.mkdirSync(outputPath);
+ }
+
+ // Copy media from archive
+ fs.copyFileSync(archiveMediaFilename, path.join(outputPath, filename));
+
+ return filename
+ }
+
+ importXArchiveURLs(tweet: XArchiveTweet) {
+
+ // Loop over all URL items
+ tweet?.entities?.urls.forEach((url: XAPILegacyURL) => {
+ // Have we seen this URL before?
+ const existing: XTweetURLRow[] = exec(this.db, 'SELECT * FROM tweet_url WHERE url = ? AND tweetID = ?', [url.url, tweet.id_str], "all") as XTweetURLRow[];
+ if (existing.length > 0) {
+ // Delete it, so we can re-add it
+ exec(this.db, 'DELETE FROM tweet_url WHERE url = ? AND tweetID = ?', [url.url, tweet.id_str]);
+ }
+
+ // Index url information in tweet_url table
+ exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [
+ url.url,
+ url.display_url,
+ url.expanded_url,
+ url.indices?.[0],
+ url.indices?.[1],
+ tweet.id_str,
+ ]);
+ })
+ }
+
async getCookie(name: string): Promise {
return this.cookies[name] || null;
}
diff --git a/src/renderer/src/views/x/XWizardImportingPage.vue b/src/renderer/src/views/x/XWizardImportingPage.vue
index 30a81b65..a3584e2e 100644
--- a/src/renderer/src/views/x/XWizardImportingPage.vue
+++ b/src/renderer/src/views/x/XWizardImportingPage.vue
@@ -59,12 +59,14 @@ const startClicked = async () => {
errorMessages.value = [];
importStarted.value = true;
let unzippedPath: string | null = null;
+ let isZip: boolean = false;
// Does importFromArchivePath end with .zip?
if (!importFromArchivePath.value.endsWith('.zip')) {
unzippedPath = importFromArchivePath.value;
} else {
// Unarchive the zip
+ isZip = true;
statusValidating.value = ImportStatus.Active;
try {
unzippedPath = await window.electron.X.unzipXArchive(props.model.account.id, importFromArchivePath.value);
@@ -143,8 +145,10 @@ const startClicked = async () => {
emitter.emit(`x-update-archive-info-${props.model.account.id}`);
statusBuildCydArchive.value = ImportStatus.Finished;
- // Delete the unarchived folder whether it's success or fail
- await window.electron.X.deleteUnzippedXArchive(props.model.account.id, unzippedPath);
+ // If we unarchived it, delete the unarchived folder whether it's success or fail
+ if (isZip) {
+ await window.electron.X.deleteUnzippedXArchive(props.model.account.id, unzippedPath);
+ }
// Success
if (!importFailed.value) {
diff --git a/testdata/XAPIUserTweetsAndRepliesLinks.json b/testdata/XAPIUserTweetsAndRepliesLinks.json
new file mode 100644
index 00000000..fdf5b33f
--- /dev/null
+++ b/testdata/XAPIUserTweetsAndRepliesLinks.json
@@ -0,0 +1,8477 @@
+{
+ "data": {
+ "user": {
+ "result": {
+ "__typename": "User",
+ "timeline_v2": {
+ "timeline": {
+ "instructions": [
+ {
+ "type": "TimelineClearCache"
+ },
+ {
+ "type": "TimelineAddEntries",
+ "entries": [
+ {
+ "entryId": "tweet-1891186072995946783",
+ "sortIndex": "1891186292176191488",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1891186072995946783",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "card": {
+ "rest_id": "https://t.co/06F3ZPW83J",
+ "legacy": {
+ "binding_values": [
+ {
+ "key": "thumbnail_image",
+ "value": {
+ "image_value": {
+ "height": 144,
+ "width": 144,
+ "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=144x144_2"
+ },
+ "type": "IMAGE"
+ }
+ },
+ {
+ "key": "domain",
+ "value": {
+ "string_value": "en.wikipedia.org",
+ "type": "STRING"
+ }
+ },
+ {
+ "key": "thumbnail_image_large",
+ "value": {
+ "image_value": {
+ "height": 420,
+ "width": 420,
+ "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=420x420_2"
+ },
+ "type": "IMAGE"
+ }
+ },
+ {
+ "key": "thumbnail_image_original",
+ "value": {
+ "image_value": {
+ "height": 640,
+ "width": 640,
+ "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=orig"
+ },
+ "type": "IMAGE"
+ }
+ },
+ {
+ "key": "thumbnail_image_small",
+ "value": {
+ "image_value": {
+ "height": 100,
+ "width": 100,
+ "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=100x100_2"
+ },
+ "type": "IMAGE"
+ }
+ },
+ {
+ "key": "thumbnail_image_x_large",
+ "value": {
+ "image_value": {
+ "height": 640,
+ "width": 640,
+ "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=png&name=2048x2048_2_exp"
+ },
+ "type": "IMAGE"
+ }
+ },
+ {
+ "key": "vanity_url",
+ "value": {
+ "scribe_key": "vanity_url",
+ "string_value": "en.wikipedia.org",
+ "type": "STRING"
+ }
+ },
+ {
+ "key": "thumbnail_image_color",
+ "value": {
+ "image_color_value": {
+ "palette": [
+ {
+ "rgb": {
+ "blue": 195,
+ "green": 195,
+ "red": 196
+ },
+ "percentage": 46.81
+ },
+ {
+ "rgb": {
+ "blue": 0,
+ "green": 0,
+ "red": 0
+ },
+ "percentage": 44.01
+ }
+ ]
+ },
+ "type": "IMAGE_COLOR"
+ }
+ },
+ {
+ "key": "title",
+ "value": {
+ "string_value": "Sun - Wikipedia",
+ "type": "STRING"
+ }
+ },
+ {
+ "key": "card_url",
+ "value": {
+ "scribe_key": "card_url",
+ "string_value": "https://t.co/06F3ZPW83J",
+ "type": "STRING"
+ }
+ }
+ ],
+ "card_platform": {
+ "platform": {
+ "audience": {
+ "name": "production"
+ },
+ "device": {
+ "name": "Swift",
+ "version": "12"
+ }
+ }
+ },
+ "name": "summary",
+ "url": "https://t.co/06F3ZPW83J",
+ "user_refs_results": []
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1891186072995946783"
+ ],
+ "editable_until_msecs": "1739732470000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": false,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890513848811090236",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890513848811090236"
+ ],
+ "editable_until_msecs": "1739572200000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:30:00 +0000 2025",
+ "conversation_id_str": "1890513848811090236",
+ "display_text_range": [
+ 0,
+ 28
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 1,
+ "favorited": false,
+ "full_text": "check out this video i found https://t.co/MMfXeoZEdi",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 1,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890513848811090236"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Sun Feb 16 18:01:10 +0000 2025",
+ "conversation_id_str": "1891186072995946783",
+ "display_text_range": [
+ 0,
+ 168
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [
+ {
+ "display_url": "en.wikipedia.org/wiki/Moon",
+ "expanded_url": "https://en.wikipedia.org/wiki/Moon",
+ "url": "https://t.co/OMusA0qMxS",
+ "indices": [
+ 33,
+ 56
+ ]
+ },
+ {
+ "display_url": "en.wikipedia.org/wiki/Sun",
+ "expanded_url": "https://en.wikipedia.org/wiki/Sun",
+ "url": "https://t.co/06F3ZPW83J",
+ "indices": [
+ 97,
+ 120
+ ]
+ },
+ {
+ "display_url": "x.com/nexamind91326/…",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236",
+ "url": "https://t.co/zISqEStkTO",
+ "indices": [
+ 145,
+ 168
+ ]
+ }
+ ],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Here's some info about the moon: https://t.co/OMusA0qMxS\n\nAnd the opposite of the moon, the sun: https://t.co/06F3ZPW83J\n\nAnd a link to a tweet: https://t.co/zISqEStkTO",
+ "is_quote_status": true,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "quoted_status_id_str": "1890513848811090236",
+ "quoted_status_permalink": {
+ "url": "https://t.co/zISqEStkTO",
+ "expanded": "https://x.com/nexamind91326/status/1890513848811090236",
+ "display": "x.com/nexamind91326/…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1891186072995946783"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890513848811090236",
+ "sortIndex": "1891186292176191487",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890513848811090236",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890513848811090236"
+ ],
+ "editable_until_msecs": "1739572200000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:30:00 +0000 2025",
+ "conversation_id_str": "1890513848811090236",
+ "display_text_range": [
+ 0,
+ 28
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 1,
+ "favorited": false,
+ "full_text": "check out this video i found https://t.co/MMfXeoZEdi",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 1,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890513848811090236"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512294670454995",
+ "sortIndex": "1891186292176191486",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512294670454995",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512294670454995"
+ ],
+ "editable_until_msecs": "1739571829000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512222050304488",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512222050304488"
+ ],
+ "editable_until_msecs": "1739571812000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quotedRefResult": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755"
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:32 +0000 2025",
+ "conversation_id_str": "1890512222050304488",
+ "display_text_range": [
+ 0,
+ 21
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this is a quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 1,
+ "quoted_status_id_str": "1889763065991659755",
+ "quoted_status_permalink": {
+ "url": "https://t.co/z3Cf9ZfMLr",
+ "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755",
+ "display": "x.com/aurorabyte7932…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512222050304488"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:49 +0000 2025",
+ "conversation_id_str": "1890512294670454995",
+ "display_text_range": [
+ 0,
+ 23
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this a self-quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1890512222050304488",
+ "quoted_status_permalink": {
+ "url": "https://t.co/LOm3Ov3h0l",
+ "expanded": "https://twitter.com/nexamind91326/status/1890512222050304488",
+ "display": "x.com/nexamind91326/…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512294670454995"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512222050304488",
+ "sortIndex": "1891186292176191485",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512222050304488",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512222050304488"
+ ],
+ "editable_until_msecs": "1739571812000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889763065991659755"
+ ],
+ "editable_until_msecs": "1739393199000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "4",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:39 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "From digital chaos to artistic order",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 1,
+ "reply_count": 3,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889763065991659755"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:32 +0000 2025",
+ "conversation_id_str": "1890512222050304488",
+ "display_text_range": [
+ 0,
+ 21
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this is a quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 1,
+ "quoted_status_id_str": "1889763065991659755",
+ "quoted_status_permalink": {
+ "url": "https://t.co/z3Cf9ZfMLr",
+ "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755",
+ "display": "x.com/aurorabyte7932…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512222050304488"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512076189114426",
+ "sortIndex": "1891186292176191484",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512076189114426",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512076189114426"
+ ],
+ "editable_until_msecs": "1739571777000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:22:57 +0000 2025",
+ "conversation_id_str": "1890512076189114426",
+ "display_text_range": [
+ 0,
+ 19
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/eBFfDPOPz6",
+ "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1",
+ "id_str": "1890512052424466432",
+ "indices": [
+ 20,
+ 43
+ ],
+ "media_key": "3_1890512052424466432",
+ "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg",
+ "type": "photo",
+ "url": "https://t.co/eBFfDPOPz6",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 838,
+ "w": 1350,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 745,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 422,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 838,
+ "width": 1350,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 82,
+ "w": 1350,
+ "h": 756
+ },
+ {
+ "x": 256,
+ "y": 0,
+ "w": 838,
+ "h": 838
+ },
+ {
+ "x": 308,
+ "y": 0,
+ "w": 735,
+ "h": 838
+ },
+ {
+ "x": 466,
+ "y": 0,
+ "w": 419,
+ "h": 838
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1350,
+ "h": 838
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1890512052424466432"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/eBFfDPOPz6",
+ "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1",
+ "id_str": "1890512052424466432",
+ "indices": [
+ 20,
+ 43
+ ],
+ "media_key": "3_1890512052424466432",
+ "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg",
+ "type": "photo",
+ "url": "https://t.co/eBFfDPOPz6",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 838,
+ "w": 1350,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 745,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 422,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 838,
+ "width": 1350,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 82,
+ "w": 1350,
+ "h": 756
+ },
+ {
+ "x": 256,
+ "y": 0,
+ "w": 838,
+ "h": 838
+ },
+ {
+ "x": 308,
+ "y": 0,
+ "w": 735,
+ "h": 838
+ },
+ {
+ "x": 466,
+ "y": 0,
+ "w": 419,
+ "h": 838
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1350,
+ "h": 838
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1890512052424466432"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "what a pretty photo https://t.co/eBFfDPOPz6",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512076189114426"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1891186292176191493",
+ "sortIndex": "1891186292176191483",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "who-to-follow-1891186292176191493-user-333357345",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjozMzMzNTczNDU=",
+ "rest_id": "333357345",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/ReachTWR",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1706259444110168064/zbqWbbGC_bigger.jpg"
+ },
+ "description": "THE WAR ROOM",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Mon Jul 11 12:15:34 +0000 2011",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Unmatched perspicacity coupled with sheer indefatigability makes me a feared opponent in any realm of human endeavour. \n\nEscape Slavery: https://t.co/b2DF1rm9ij",
+ "entities": {
+ "description": {
+ "urls": [
+ {
+ "display_url": "cobratate.com",
+ "expanded_url": "http://www.cobratate.com",
+ "url": "https://t.co/b2DF1rm9ij",
+ "indices": [
+ 138,
+ 161
+ ]
+ }
+ ]
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "cobratate.com",
+ "expanded_url": "http://www.cobratate.com",
+ "url": "https://t.co/b2DF1rm9ij",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 18443,
+ "followers_count": 10754002,
+ "friends_count": 1123,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 9105,
+ "location": "The War Room",
+ "media_count": 4023,
+ "name": "Andrew Tate",
+ "normal_followers_count": 10754002,
+ "pinned_tweet_ids_str": [
+ "1891182974256783411"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/333357345/1738912824",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1887763323464146945/5HdM0_7C_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "Cobratate",
+ "statuses_count": 19536,
+ "translator_type": "none",
+ "url": "https://t.co/b2DF1rm9ij",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1593667509806211072",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {},
+ "super_follow_eligible": true
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1891186292176191493-user-2455740283",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoyNDU1NzQwMjgz",
+ "rest_id": "2455740283",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Mon Apr 21 00:28:42 +0000 2014",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "X Super Official CEO",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "amazon.com/beastgames",
+ "expanded_url": "https://www.amazon.com/beastgames",
+ "url": "https://t.co/e8ZoaSIchZ",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 23557,
+ "followers_count": 32222051,
+ "friends_count": 2068,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 8447,
+ "location": "Follow me for a cookie",
+ "media_count": 873,
+ "name": "MrBeast",
+ "normal_followers_count": 32222051,
+ "pinned_tweet_ids_str": [
+ "1878132133144715658"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1733506553",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "MrBeast",
+ "statuses_count": 7012,
+ "translator_type": "none",
+ "url": "https://t.co/e8ZoaSIchZ",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679573344159510535",
+ "professional_type": "Creator",
+ "category": [
+ {
+ "id": 933,
+ "name": "Media Personality",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true
+ },
+ "super_follow_eligible": true
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1891186292176191493-user-357312062",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjozNTczMTIwNjI=",
+ "rest_id": "357312062",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Thu Aug 18 05:06:08 +0000 2011",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Bitcoin is an open source censorship-resistant peer-to-peer immutable network. Trackable digital gold. Don't trust; verify. Not your keys; not your coins.",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "bitcoin.org/bitcoin.pdf",
+ "expanded_url": "https://bitcoin.org/bitcoin.pdf",
+ "url": "https://t.co/foKG3v5VuE",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 2820,
+ "followers_count": 7537911,
+ "friends_count": 16,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 21710,
+ "location": "Worldwide",
+ "media_count": 3567,
+ "name": "Bitcoin",
+ "normal_followers_count": 7537911,
+ "pinned_tweet_ids_str": [
+ "1283491850641461248"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/357312062/1566845268",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/421692600446619648/dWAbC2wg_normal.jpeg",
+ "profile_interstitial_type": "",
+ "screen_name": "Bitcoin",
+ "statuses_count": 27868,
+ "translator_type": "regular",
+ "url": "https://t.co/foKG3v5VuE",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679703878185672704",
+ "professional_type": "Business",
+ "category": []
+ },
+ "tipjar_settings": {}
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "displayType": "Vertical",
+ "header": {
+ "displayType": "Classic",
+ "text": "Who to follow",
+ "sticky": false
+ },
+ "footer": {
+ "displayType": "Classic",
+ "text": "Show more",
+ "landingUrl": {
+ "url": "twitter://connect_people?user_id=1769426369526771712&display_location=profile_wtf_showmore",
+ "urlType": "DeepLink"
+ }
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889786416764231973",
+ "sortIndex": "1891186292176191482",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889786416764231973",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889786416764231973"
+ ],
+ "editable_until_msecs": "1739398766947",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 21:19:26 +0000 2025",
+ "conversation_id_str": "1889786416764231973",
+ "display_text_range": [
+ 0,
+ 140
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "18839785",
+ "name": "Narendra Modi",
+ "screen_name": "narendramodi",
+ "indices": [
+ 3,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @narendramodi: Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas stu…",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889549988084240447",
+ "quoted_status_permalink": {
+ "url": "https://t.co/ezgVwAcpWA",
+ "expanded": "https://twitter.com/MIB_India/status/1889549988084240447",
+ "display": "x.com/MIB_India/stat…"
+ },
+ "reply_count": 0,
+ "retweet_count": 2852,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889786416764231973",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889575567218835670",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODgzOTc4NQ==",
+ "rest_id": "18839785",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Sat Jan 10 17:18:56 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Prime Minister of India",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "narendramodi.in",
+ "expanded_url": "http://www.narendramodi.in",
+ "url": "https://t.co/m2qxixtyKj",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 0,
+ "followers_count": 105389685,
+ "friends_count": 2683,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 31403,
+ "location": "India",
+ "media_count": 18169,
+ "name": "Narendra Modi",
+ "normal_followers_count": 105389685,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "narendramodi",
+ "statuses_count": 45482,
+ "translator_type": "regular",
+ "url": "https://t.co/m2qxixtyKj",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889575567218835670"
+ ],
+ "editable_until_msecs": "1739348496000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1153950",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk1NzU1NjcxMjI0MTk3MTI=",
+ "text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’ episode. Do watch. #PPC2025 #ExamWarriors",
+ "entity_set": {
+ "hashtags": [
+ {
+ "indices": [
+ 296,
+ 304
+ ],
+ "text": "PPC2025"
+ },
+ {
+ "indices": [
+ 305,
+ 318
+ ],
+ "text": "ExamWarriors"
+ }
+ ],
+ "symbols": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 188,
+ 204
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 209,
+ 223
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889549988084240447",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo5MjA0ODgwMzk=",
+ "rest_id": "920488039",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Fri Nov 02 06:26:58 +0000 2012",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Official Twitter account of Ministry of Information and Broadcasting, Government of India. Follow @MIB_Hindi for Tweets in Hindi.",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "mib.gov.in",
+ "expanded_url": "http://mib.gov.in",
+ "url": "https://t.co/utkJBHWOvc",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 238,
+ "followers_count": 2007601,
+ "friends_count": 202,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 2167,
+ "location": "New Delhi, India",
+ "media_count": 49087,
+ "name": "Ministry of Information and Broadcasting",
+ "normal_followers_count": 2007601,
+ "pinned_tweet_ids_str": [
+ "1890996957415616595"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/920488039/1739629132",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1824326673170567168/IJx7AxEA_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "MIB_India",
+ "statuses_count": 193727,
+ "translator_type": "none",
+ "url": "https://t.co/utkJBHWOvc",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "initial_tweet_id": "1889549636047872354",
+ "edit_control_initial": {
+ "edit_tweet_ids": [
+ "1889549636047872354",
+ "1889549988084240447"
+ ],
+ "editable_until_msecs": "1739342314000",
+ "is_edit_eligible": true,
+ "edits_remaining": "4"
+ }
+ },
+ "previous_counts": {
+ "bookmark_count": 0,
+ "favorite_count": 0,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1143890",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk1NDk5ODc5Nzk0MzE5MzY=",
+ "text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of #PPC2025 on 13th February at 10 AM!\n\n#ParikshaPeCharcha \n\n@PMOIndia @EduMinOfIndia @dpradhanbjp @jayantrld @AshwiniVaishnaw @Murugan_MoS @PIB_India @DDNewslive @airnewsalerts",
+ "entity_set": {
+ "hashtags": [
+ {
+ "indices": [
+ 119,
+ 132
+ ],
+ "text": "ExamWarriors"
+ },
+ {
+ "indices": [
+ 210,
+ 232
+ ],
+ "text": "ParikshaPeCharcha2025"
+ },
+ {
+ "indices": [
+ 273,
+ 281
+ ],
+ "text": "PPC2025"
+ },
+ {
+ "indices": [
+ 310,
+ 328
+ ],
+ "text": "ParikshaPeCharcha"
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 5,
+ 21
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 89,
+ 103
+ ]
+ },
+ {
+ "id_str": "471741741",
+ "name": "PMO India",
+ "screen_name": "PMOIndia",
+ "indices": [
+ 331,
+ 340
+ ]
+ },
+ {
+ "id_str": "2574232910",
+ "name": "Ministry of Education",
+ "screen_name": "EduMinOfIndia",
+ "indices": [
+ 341,
+ 355
+ ]
+ },
+ {
+ "id_str": "1897514666",
+ "name": "Dharmendra Pradhan",
+ "screen_name": "dpradhanbjp",
+ "indices": [
+ 356,
+ 368
+ ]
+ },
+ {
+ "id_str": "2864060538",
+ "name": "Jayant Singh",
+ "screen_name": "jayantrld",
+ "indices": [
+ 369,
+ 379
+ ]
+ },
+ {
+ "id_str": "852579395315171328",
+ "name": "Ashwini Vaishnaw",
+ "screen_name": "AshwiniVaishnaw",
+ "indices": [
+ 380,
+ 396
+ ]
+ },
+ {
+ "id_str": "913051220796858369",
+ "name": "Dr.L.Murugan",
+ "screen_name": "Murugan_MoS",
+ "indices": [
+ 397,
+ 409
+ ]
+ },
+ {
+ "id_str": "231033118",
+ "name": "PIB India",
+ "screen_name": "PIB_India",
+ "indices": [
+ 410,
+ 420
+ ]
+ },
+ {
+ "id_str": "1100927498",
+ "name": "DD News",
+ "screen_name": "DDNewslive",
+ "indices": [
+ 421,
+ 432
+ ]
+ },
+ {
+ "id_str": "1056850669",
+ "name": "All India Radio News",
+ "screen_name": "airnewsalerts",
+ "indices": [
+ 433,
+ 447
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 44,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 05:39:57 +0000 2025",
+ "conversation_id_str": "1889549988084240447",
+ "display_text_range": [
+ 0,
+ 280
+ ],
+ "entities": {
+ "hashtags": [
+ {
+ "indices": [
+ 123,
+ 136
+ ],
+ "text": "ExamWarriors"
+ },
+ {
+ "indices": [
+ 214,
+ 236
+ ],
+ "text": "ParikshaPeCharcha2025"
+ }
+ ],
+ "media": [
+ {
+ "display_url": "pic.x.com/qFVT78TzCc",
+ "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1",
+ "id_str": "1889547251401494528",
+ "indices": [
+ 281,
+ 304
+ ],
+ "media_key": "7_1889547251401494528",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg",
+ "type": "video",
+ "url": "https://t.co/qFVT78TzCc",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1080,
+ "w": 1920,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1080,
+ "width": 1920,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 123320,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14"
+ },
+ {
+ "bitrate": 10368000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889547251401494528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 5,
+ 21
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 93,
+ 107
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/qFVT78TzCc",
+ "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1",
+ "id_str": "1889547251401494528",
+ "indices": [
+ 281,
+ 304
+ ],
+ "media_key": "7_1889547251401494528",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg",
+ "type": "video",
+ "url": "https://t.co/qFVT78TzCc",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1080,
+ "w": 1920,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1080,
+ "width": 1920,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 123320,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14"
+ },
+ {
+ "bitrate": 10368000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889547251401494528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 1128,
+ "favorited": false,
+ "full_text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of https://t.co/qFVT78TzCc",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 13,
+ "reply_count": 65,
+ "retweet_count": 201,
+ "retweeted": false,
+ "user_id_str": "920488039",
+ "id_str": "1889549988084240447"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 271,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 07:21:36 +0000 2025",
+ "conversation_id_str": "1889575567218835670",
+ "display_text_range": [
+ 0,
+ 276
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 188,
+ 204
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 209,
+ 223
+ ]
+ }
+ ]
+ },
+ "favorite_count": 15986,
+ "favorited": false,
+ "full_text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 34,
+ "quoted_status_id_str": "1889549988084240447",
+ "quoted_status_permalink": {
+ "url": "https://t.co/ezgVwAcpWA",
+ "expanded": "https://twitter.com/MIB_India/status/1889549988084240447",
+ "display": "x.com/MIB_India/stat…"
+ },
+ "reply_count": 434,
+ "retweet_count": 2852,
+ "retweeted": true,
+ "user_id_str": "18839785",
+ "id_str": "1889575567218835670"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889776036763533445",
+ "sortIndex": "1891186292176191481",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889776036763533445",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889776036763533445"
+ ],
+ "editable_until_msecs": "1739396292162",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": true,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:38:12 +0000 2025",
+ "conversation_id_str": "1889776036763533445",
+ "display_text_range": [
+ 0,
+ 139
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "18839785",
+ "name": "Narendra Modi",
+ "screen_name": "narendramodi",
+ "indices": [
+ 3,
+ 16
+ ]
+ },
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 77,
+ 92
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @narendramodi: Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle…",
+ "is_quote_status": false,
+ "lang": "fr",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 2876,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889776036763533445",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889660611564544051",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODgzOTc4NQ==",
+ "rest_id": "18839785",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Sat Jan 10 17:18:56 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Prime Minister of India",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "narendramodi.in",
+ "expanded_url": "http://www.narendramodi.in",
+ "url": "https://t.co/m2qxixtyKj",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 0,
+ "followers_count": 105389685,
+ "friends_count": 2683,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 31403,
+ "location": "India",
+ "media_count": 18169,
+ "name": "Narendra Modi",
+ "normal_followers_count": 105389685,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "narendramodi",
+ "statuses_count": 45482,
+ "translator_type": "regular",
+ "url": "https://t.co/m2qxixtyKj",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889660611564544051"
+ ],
+ "editable_until_msecs": "1739368772000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": true,
+ "views": {
+ "count": "744851",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk2NjA2MTE0MzQ1MjA1Nzc=",
+ "text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec les leaders de l'industrie joueront un rôle crucial pour stimuler la connectivité, les chaînes d'approvisionnement et la croissance économique.\n\nNous nous efforçons de renforcer la coopération entre l'Inde et la France dans les domaines de la logistique, du développement durable et du commerce mondial, en consolidant notre vision commune d'un avenir maritime meilleur.",
+ "entity_set": {
+ "hashtags": [],
+ "symbols": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 59,
+ 74
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 78,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 12:59:32 +0000 2025",
+ "conversation_id_str": "1889660611564544051",
+ "display_text_range": [
+ 0,
+ 278
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660522800488449",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660522800488449",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1358,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 795,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 451,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2715,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 184,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1381,
+ "y": 0,
+ "w": 2715,
+ "h": 2715
+ },
+ {
+ "x": 1714,
+ "y": 0,
+ "w": 2382,
+ "h": 2715
+ },
+ {
+ "x": 2738,
+ "y": 0,
+ "w": 1358,
+ "h": 2715
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2715
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660522800488449"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660550935953408",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660550935953408",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1652,
+ "y": 558,
+ "h": 84,
+ "w": 84
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 967,
+ "y": 326,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 548,
+ "y": 185,
+ "h": 27,
+ "w": 27
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 3304,
+ "y": 1116,
+ "h": 168,
+ "w": 168
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1366,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 800,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 453,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2731,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1365,
+ "y": 0,
+ "w": 2731,
+ "h": 2731
+ },
+ {
+ "x": 1700,
+ "y": 0,
+ "w": 2396,
+ "h": 2731
+ },
+ {
+ "x": 2491,
+ "y": 0,
+ "w": 1366,
+ "h": 2731
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2731
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660550935953408"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660574264643584",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660574264643584",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 336,
+ "y": 514,
+ "h": 74,
+ "w": 74
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 196,
+ "y": 301,
+ "h": 43,
+ "w": 43
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 111,
+ "y": 170,
+ "h": 24,
+ "w": 24
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 672,
+ "y": 1028,
+ "h": 148,
+ "w": 148
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1239,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 726,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 411,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2477,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2477,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2173,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1239,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2477
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660574264643584"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660596410523650",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660596410523650",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1458,
+ "y": 252,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1642,
+ "y": 260,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 870,
+ "y": 290,
+ "h": 76,
+ "w": 76
+ },
+ {
+ "x": 416,
+ "y": 300,
+ "h": 86,
+ "w": 86
+ },
+ {
+ "x": 688,
+ "y": 312,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1008,
+ "y": 330,
+ "h": 74,
+ "w": 74
+ },
+ {
+ "x": 1198,
+ "y": 332,
+ "h": 70,
+ "w": 70
+ },
+ {
+ "x": 566,
+ "y": 348,
+ "h": 68,
+ "w": 68
+ },
+ {
+ "x": 162,
+ "y": 254,
+ "h": 90,
+ "w": 90
+ },
+ {
+ "x": 1062,
+ "y": 308,
+ "h": 80,
+ "w": 80
+ },
+ {
+ "x": 1656,
+ "y": 210,
+ "h": 150,
+ "w": 150
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 854,
+ "y": 147,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 962,
+ "y": 152,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 509,
+ "y": 169,
+ "h": 44,
+ "w": 44
+ },
+ {
+ "x": 243,
+ "y": 175,
+ "h": 50,
+ "w": 50
+ },
+ {
+ "x": 403,
+ "y": 182,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 590,
+ "y": 193,
+ "h": 43,
+ "w": 43
+ },
+ {
+ "x": 701,
+ "y": 194,
+ "h": 41,
+ "w": 41
+ },
+ {
+ "x": 331,
+ "y": 203,
+ "h": 39,
+ "w": 39
+ },
+ {
+ "x": 94,
+ "y": 148,
+ "h": 52,
+ "w": 52
+ },
+ {
+ "x": 622,
+ "y": 180,
+ "h": 46,
+ "w": 46
+ },
+ {
+ "x": 970,
+ "y": 123,
+ "h": 87,
+ "w": 87
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 484,
+ "y": 83,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 545,
+ "y": 86,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 288,
+ "y": 96,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 138,
+ "y": 99,
+ "h": 28,
+ "w": 28
+ },
+ {
+ "x": 228,
+ "y": 103,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 334,
+ "y": 109,
+ "h": 24,
+ "w": 24
+ },
+ {
+ "x": 397,
+ "y": 110,
+ "h": 23,
+ "w": 23
+ },
+ {
+ "x": 187,
+ "y": 115,
+ "h": 22,
+ "w": 22
+ },
+ {
+ "x": 53,
+ "y": 84,
+ "h": 29,
+ "w": 29
+ },
+ {
+ "x": 352,
+ "y": 102,
+ "h": 26,
+ "w": 26
+ },
+ {
+ "x": 549,
+ "y": 69,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 2916,
+ "y": 504,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 3284,
+ "y": 520,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 1740,
+ "y": 580,
+ "h": 152,
+ "w": 152
+ },
+ {
+ "x": 832,
+ "y": 600,
+ "h": 172,
+ "w": 172
+ },
+ {
+ "x": 1376,
+ "y": 624,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 2016,
+ "y": 660,
+ "h": 148,
+ "w": 148
+ },
+ {
+ "x": 2396,
+ "y": 664,
+ "h": 140,
+ "w": 140
+ },
+ {
+ "x": 1132,
+ "y": 696,
+ "h": 136,
+ "w": 136
+ },
+ {
+ "x": 324,
+ "y": 508,
+ "h": 180,
+ "w": 180
+ },
+ {
+ "x": 2124,
+ "y": 616,
+ "h": 160,
+ "w": 160
+ },
+ {
+ "x": 3312,
+ "y": 420,
+ "h": 300,
+ "w": 300
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1189,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 696,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 395,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2377,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 141,
+ "y": 0,
+ "w": 2377,
+ "h": 2377
+ },
+ {
+ "x": 287,
+ "y": 0,
+ "w": 2085,
+ "h": 2377
+ },
+ {
+ "x": 735,
+ "y": 0,
+ "w": 1189,
+ "h": 2377
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2377
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660596410523650"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 59,
+ 74
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660522800488449",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660522800488449",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1358,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 795,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 451,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2715,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 184,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1381,
+ "y": 0,
+ "w": 2715,
+ "h": 2715
+ },
+ {
+ "x": 1714,
+ "y": 0,
+ "w": 2382,
+ "h": 2715
+ },
+ {
+ "x": 2738,
+ "y": 0,
+ "w": 1358,
+ "h": 2715
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2715
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660522800488449"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660550935953408",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660550935953408",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1652,
+ "y": 558,
+ "h": 84,
+ "w": 84
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 967,
+ "y": 326,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 548,
+ "y": 185,
+ "h": 27,
+ "w": 27
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 3304,
+ "y": 1116,
+ "h": 168,
+ "w": 168
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1366,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 800,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 453,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2731,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1365,
+ "y": 0,
+ "w": 2731,
+ "h": 2731
+ },
+ {
+ "x": 1700,
+ "y": 0,
+ "w": 2396,
+ "h": 2731
+ },
+ {
+ "x": 2491,
+ "y": 0,
+ "w": 1366,
+ "h": 2731
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2731
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660550935953408"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660574264643584",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660574264643584",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 336,
+ "y": 514,
+ "h": 74,
+ "w": 74
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 196,
+ "y": 301,
+ "h": 43,
+ "w": 43
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 111,
+ "y": 170,
+ "h": 24,
+ "w": 24
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 672,
+ "y": 1028,
+ "h": 148,
+ "w": 148
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1239,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 726,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 411,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2477,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2477,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2173,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1239,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2477
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660574264643584"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660596410523650",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660596410523650",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1458,
+ "y": 252,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1642,
+ "y": 260,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 870,
+ "y": 290,
+ "h": 76,
+ "w": 76
+ },
+ {
+ "x": 416,
+ "y": 300,
+ "h": 86,
+ "w": 86
+ },
+ {
+ "x": 688,
+ "y": 312,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1008,
+ "y": 330,
+ "h": 74,
+ "w": 74
+ },
+ {
+ "x": 1198,
+ "y": 332,
+ "h": 70,
+ "w": 70
+ },
+ {
+ "x": 566,
+ "y": 348,
+ "h": 68,
+ "w": 68
+ },
+ {
+ "x": 162,
+ "y": 254,
+ "h": 90,
+ "w": 90
+ },
+ {
+ "x": 1062,
+ "y": 308,
+ "h": 80,
+ "w": 80
+ },
+ {
+ "x": 1656,
+ "y": 210,
+ "h": 150,
+ "w": 150
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 854,
+ "y": 147,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 962,
+ "y": 152,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 509,
+ "y": 169,
+ "h": 44,
+ "w": 44
+ },
+ {
+ "x": 243,
+ "y": 175,
+ "h": 50,
+ "w": 50
+ },
+ {
+ "x": 403,
+ "y": 182,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 590,
+ "y": 193,
+ "h": 43,
+ "w": 43
+ },
+ {
+ "x": 701,
+ "y": 194,
+ "h": 41,
+ "w": 41
+ },
+ {
+ "x": 331,
+ "y": 203,
+ "h": 39,
+ "w": 39
+ },
+ {
+ "x": 94,
+ "y": 148,
+ "h": 52,
+ "w": 52
+ },
+ {
+ "x": 622,
+ "y": 180,
+ "h": 46,
+ "w": 46
+ },
+ {
+ "x": 970,
+ "y": 123,
+ "h": 87,
+ "w": 87
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 484,
+ "y": 83,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 545,
+ "y": 86,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 288,
+ "y": 96,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 138,
+ "y": 99,
+ "h": 28,
+ "w": 28
+ },
+ {
+ "x": 228,
+ "y": 103,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 334,
+ "y": 109,
+ "h": 24,
+ "w": 24
+ },
+ {
+ "x": 397,
+ "y": 110,
+ "h": 23,
+ "w": 23
+ },
+ {
+ "x": 187,
+ "y": 115,
+ "h": 22,
+ "w": 22
+ },
+ {
+ "x": 53,
+ "y": 84,
+ "h": 29,
+ "w": 29
+ },
+ {
+ "x": 352,
+ "y": 102,
+ "h": 26,
+ "w": 26
+ },
+ {
+ "x": 549,
+ "y": 69,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 2916,
+ "y": 504,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 3284,
+ "y": 520,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 1740,
+ "y": 580,
+ "h": 152,
+ "w": 152
+ },
+ {
+ "x": 832,
+ "y": 600,
+ "h": 172,
+ "w": 172
+ },
+ {
+ "x": 1376,
+ "y": 624,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 2016,
+ "y": 660,
+ "h": 148,
+ "w": 148
+ },
+ {
+ "x": 2396,
+ "y": 664,
+ "h": 140,
+ "w": 140
+ },
+ {
+ "x": 1132,
+ "y": 696,
+ "h": 136,
+ "w": 136
+ },
+ {
+ "x": 324,
+ "y": 508,
+ "h": 180,
+ "w": 180
+ },
+ {
+ "x": 2124,
+ "y": 616,
+ "h": 160,
+ "w": 160
+ },
+ {
+ "x": 3312,
+ "y": 420,
+ "h": 300,
+ "w": 300
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1189,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 696,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 395,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2377,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 141,
+ "y": 0,
+ "w": 2377,
+ "h": 2377
+ },
+ {
+ "x": 287,
+ "y": 0,
+ "w": 2085,
+ "h": 2377
+ },
+ {
+ "x": 735,
+ "y": 0,
+ "w": 1189,
+ "h": 2377
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2377
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660596410523650"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 17997,
+ "favorited": false,
+ "full_text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec https://t.co/6LGby2kzQ7",
+ "is_quote_status": false,
+ "lang": "fr",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 39,
+ "reply_count": 282,
+ "retweet_count": 2876,
+ "retweeted": true,
+ "user_id_str": "18839785",
+ "id_str": "1889660611564544051"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889773435984945409",
+ "sortIndex": "1891186292176191480",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889773435984945409",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889773435984945409"
+ ],
+ "editable_until_msecs": "1739395672088",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:27:52 +0000 2025",
+ "conversation_id_str": "1889773435984945409",
+ "display_text_range": [
+ 0,
+ 18
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8",
+ "is_quote_status": true,
+ "lang": "art",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889727599800140182",
+ "quoted_status_permalink": {
+ "url": "https://t.co/Ew6dWp2auD",
+ "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182",
+ "display": "x.com/charliekirk11/…"
+ },
+ "reply_count": 0,
+ "retweet_count": 42675,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889773435984945409",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889734237495935385",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 124168,
+ "followers_count": 217858847,
+ "friends_count": 1030,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160170,
+ "location": "",
+ "media_count": 3371,
+ "name": "Elon Musk",
+ "normal_followers_count": 217858847,
+ "pinned_tweet_ids_str": [
+ "1890958798841389499"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70629,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889734237495935385"
+ ],
+ "editable_until_msecs": "1739386326000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "13561999",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889727599800140182",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoyOTI5MjkyNzE=",
+ "rest_id": "292929271",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/TPUSA",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1870964730224877568/1oaBEqYE_bigger.jpg"
+ },
+ "description": "Turning Point USA",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": false,
+ "created_at": "Wed May 04 13:37:25 +0000 2011",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Founder & CEO: @TPUSA + @TPAction_ • Host: The Charlie Kirk Show • Click the link below to subscribe \uD83C\uDDFA\uD83C\uDDF8",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "podcasts.apple.com/us/podcast/the…",
+ "expanded_url": "https://podcasts.apple.com/us/podcast/the-charlie-kirk-show/id1460600818",
+ "url": "https://t.co/qiKLOzdk76",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 35918,
+ "followers_count": 4692803,
+ "friends_count": 186037,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 10694,
+ "location": "Phoenix, AZ",
+ "media_count": 10360,
+ "name": "Charlie Kirk",
+ "normal_followers_count": 4692803,
+ "pinned_tweet_ids_str": [
+ "1890445913199415667"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/292929271/1722636385",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1819144572179828740/z3ZuWW2J_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "charliekirk11",
+ "statuses_count": 67481,
+ "translator_type": "none",
+ "url": "https://t.co/qiKLOzdk76",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889727599800140182"
+ ],
+ "editable_until_msecs": "1739384743000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "16325959",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 3781,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:25:43 +0000 2025",
+ "conversation_id_str": "1889727599800140182",
+ "display_text_range": [
+ 0,
+ 266
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/KMfAj2E97w",
+ "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1",
+ "id_str": "1889724224182329344",
+ "indices": [
+ 243,
+ 266
+ ],
+ "media_key": "7_1889724224182329344",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg",
+ "source_status_id_str": "1889724367350726930",
+ "source_user_id_str": "1810612162760671232",
+ "type": "video",
+ "url": "https://t.co/KMfAj2E97w",
+ "additional_media_info": {
+ "monetizable": false,
+ "source_user": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy",
+ "rest_id": "1810612162760671232",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Tue Jul 09 09:49:33 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Open-Source Intel • Breaking News • Politics",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "buymeacoffee.com/globalbeaconn",
+ "expanded_url": "https://buymeacoffee.com/globalbeaconn",
+ "url": "https://t.co/lMzquGOUk6",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 211586,
+ "followers_count": 4886,
+ "friends_count": 1895,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 22,
+ "location": "United States",
+ "media_count": 4758,
+ "name": "The Global Beacon",
+ "normal_followers_count": 4886,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "globalbeaconn",
+ "statuses_count": 9789,
+ "translator_type": "none",
+ "url": "https://t.co/lMzquGOUk6",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1810641258655936543",
+ "professional_type": "Business",
+ "category": [
+ {
+ "id": 579,
+ "name": "Media & News",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true,
+ "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84"
+ }
+ }
+ }
+ }
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 59648,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889724224182329344"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/KMfAj2E97w",
+ "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1",
+ "id_str": "1889724224182329344",
+ "indices": [
+ 243,
+ 266
+ ],
+ "media_key": "7_1889724224182329344",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg",
+ "source_status_id_str": "1889724367350726930",
+ "source_user_id_str": "1810612162760671232",
+ "type": "video",
+ "url": "https://t.co/KMfAj2E97w",
+ "additional_media_info": {
+ "monetizable": false,
+ "source_user": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy",
+ "rest_id": "1810612162760671232",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Tue Jul 09 09:49:33 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Open-Source Intel • Breaking News • Politics",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "buymeacoffee.com/globalbeaconn",
+ "expanded_url": "https://buymeacoffee.com/globalbeaconn",
+ "url": "https://t.co/lMzquGOUk6",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 211586,
+ "followers_count": 4886,
+ "friends_count": 1895,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 22,
+ "location": "United States",
+ "media_count": 4758,
+ "name": "The Global Beacon",
+ "normal_followers_count": 4886,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "globalbeaconn",
+ "statuses_count": 9789,
+ "translator_type": "none",
+ "url": "https://t.co/lMzquGOUk6",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1810641258655936543",
+ "professional_type": "Business",
+ "category": [
+ {
+ "id": 579,
+ "name": "Media & News",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true,
+ "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84"
+ }
+ }
+ }
+ }
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 59648,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889724224182329344"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 108108,
+ "favorited": false,
+ "full_text": "BREAKING: A federal judge has ruled that President Trump does in fact have constitutional authority to freeze or limit certain federal funding. This means the Trump White House can withhold funding without the district court's prior approval. https://t.co/KMfAj2E97w",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 1395,
+ "reply_count": 3232,
+ "retweet_count": 19855,
+ "retweeted": false,
+ "user_id_str": "292929271",
+ "id_str": "1889727599800140182"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 3443,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:52:06 +0000 2025",
+ "conversation_id_str": "1889734237495935385",
+ "display_text_range": [
+ 0,
+ 4
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 231568,
+ "favorited": false,
+ "full_text": "\uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8",
+ "is_quote_status": true,
+ "lang": "art",
+ "quote_count": 1229,
+ "quoted_status_id_str": "1889727599800140182",
+ "quoted_status_permalink": {
+ "url": "https://t.co/Ew6dWp2auD",
+ "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182",
+ "display": "x.com/charliekirk11/…"
+ },
+ "reply_count": 5560,
+ "retweet_count": 42675,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889734237495935385"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191497",
+ "sortIndex": "1891186292176191479",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191497-tweet-1889763065991659755",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889763065991659755"
+ ],
+ "editable_until_msecs": "1739393199000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "4",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:39 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "From digital chaos to artistic order",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 1,
+ "reply_count": 3,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889763065991659755"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191497-tweet-1889768255771816233",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889768255771816233",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889768255771816233"
+ ],
+ "editable_until_msecs": "1739394437000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:07:17 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 17,
+ 58
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Innovative thought, redefining boundaries",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889763065991659755",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889768255771816233"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889763065991659755",
+ "1889768255771816233"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191498",
+ "sortIndex": "1891186292176191478",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191498-tweet-1889762934848626695",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889762934848626695",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889762934848626695"
+ ],
+ "editable_until_msecs": "1739393168000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "6",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:08 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 46
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Where technology meets the zenith of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889762934848626695"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191498-tweet-1889765541784531112",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889765541784531112",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889765541784531112"
+ ],
+ "editable_until_msecs": "1739393789000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:56:29 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 50
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Synthesizing future intelligence, shaping tomorrow",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889762934848626695",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 2,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889765541784531112"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191498-tweet-1889768205297528981",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889768205297528981",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889768205297528981"
+ ],
+ "editable_until_msecs": "1739394424000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:07:04 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 50
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "The crucible of cognitive evolution and technology",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889765541784531112",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889768205297528981"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889762934848626695",
+ "1889765541784531112",
+ "1889768205297528981"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191499",
+ "sortIndex": "1891186292176191477",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191499-tweet-1889765588458692633",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889765588458692633",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889765588458692633"
+ ],
+ "editable_until_msecs": "1739393801000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:56:41 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 17,
+ 63
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Intelligence transformed, the future redefined",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889763065991659755",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889765588458692633"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889763065991659755",
+ "1889765588458692633"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889760338960150978",
+ "sortIndex": "1891186292176191476",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889760338960150978",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889760338960150978"
+ ],
+ "editable_until_msecs": "1739392549000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "2",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:35:49 +0000 2025",
+ "conversation_id_str": "1889760338960150978",
+ "display_text_range": [
+ 0,
+ 40
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Orchestrating the evolution of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889760338960150978"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191501",
+ "sortIndex": "1891186292176191475",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191501-tweet-1889752613794574729",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889752613794574729",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889752613794574729"
+ ],
+ "editable_until_msecs": "1739390707000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:05:07 +0000 2025",
+ "conversation_id_str": "1889752613794574729",
+ "display_text_range": [
+ 0,
+ 33
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Innovating beauty, pixel by pixel",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 2,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889752613794574729"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191501-tweet-1889755137834434745",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889755137834434745",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889755137834434745"
+ ],
+ "editable_until_msecs": "1739391309000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:15:09 +0000 2025",
+ "conversation_id_str": "1889752613794574729",
+ "display_text_range": [
+ 17,
+ 61
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Evolving intellect, one innovation at a time",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889752613794574729",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889755137834434745"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889752613794574729",
+ "1889755137834434745"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191502",
+ "sortIndex": "1891186292176191474",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191502-tweet-1889752489064378392",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889752489064378392",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889752489064378392"
+ ],
+ "editable_until_msecs": "1739390677000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:04:37 +0000 2025",
+ "conversation_id_str": "1889752489064378392",
+ "display_text_range": [
+ 0,
+ 49
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Beyond imagination, within the realm of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889752489064378392"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191502-tweet-1889755100664692853",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889755100664692853",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889755100664692853"
+ ],
+ "editable_until_msecs": "1739391300000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:15:00 +0000 2025",
+ "conversation_id_str": "1889752489064378392",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "The pinnacle of cognitive innovation",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889752489064378392",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889755100664692853"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889752489064378392",
+ "1889755100664692853"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889749874477789437",
+ "sortIndex": "1891186292176191473",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889749874477789437",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889749874477789437"
+ ],
+ "editable_until_msecs": "1739390054587",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:54:14 +0000 2025",
+ "conversation_id_str": "1889749874477789437",
+ "display_text_range": [
+ 0,
+ 92
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ },
+ {
+ "id_str": "17494010",
+ "name": "Chuck Schumer",
+ "screen_name": "SenSchumer",
+ "indices": [
+ 20,
+ 31
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: Well, @SenSchumer does admit there is waste in government, so that’s progress!",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889417340355227750",
+ "quoted_status_permalink": {
+ "url": "https://t.co/VIeIp7SJKy",
+ "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750",
+ "display": "x.com/ianonpatriot/s…"
+ },
+ "reply_count": 0,
+ "retweet_count": 22224,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889749874477789437",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889699817229631996",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 124168,
+ "followers_count": 217858847,
+ "friends_count": 1030,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160170,
+ "location": "",
+ "media_count": 3371,
+ "name": "Elon Musk",
+ "normal_followers_count": 217858847,
+ "pinned_tweet_ids_str": [
+ "1890958798841389499"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70629,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889699817229631996"
+ ],
+ "editable_until_msecs": "1739378120000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "15187600",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889417340355227750",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxMzg5ODMzODY0MTIyNjEzNzYx",
+ "rest_id": "1389833864122613761",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Wed May 05 06:46:46 +0000 2021",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "America First • \uD835\uDD4F Breaking News • MAGA\uD83C\uDDFA\uD83C\uDDF8 \uD83D\uDD25just a dude with an IPhone ✝️",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 102972,
+ "followers_count": 478852,
+ "friends_count": 30675,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 968,
+ "location": "Florida, USA",
+ "media_count": 18252,
+ "name": "American AF \uD83C\uDDFA\uD83C\uDDF8",
+ "normal_followers_count": 478852,
+ "pinned_tweet_ids_str": [
+ "1890877948351099389"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389833864122613761/1735220689",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677756031324102659/QmkoTNg5_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "iAnonPatriot",
+ "statuses_count": 79085,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679620629841031170",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false,
+ "cash_app_handle": "DScarberry2",
+ "venmo_handle": "DScarberryy"
+ }
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889417340355227750"
+ ],
+ "editable_until_msecs": "1739310772000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "18664969",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 1073,
+ "bookmarked": false,
+ "created_at": "Tue Feb 11 20:52:52 +0000 2025",
+ "conversation_id_str": "1889417340355227750",
+ "display_text_range": [
+ 0,
+ 125
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/2FNy2iJoG3",
+ "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1",
+ "id_str": "1889417257555578880",
+ "indices": [
+ 126,
+ 149
+ ],
+ "media_key": "13_1889417257555578880",
+ "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg",
+ "type": "video",
+ "url": "https://t.co/2FNy2iJoG3",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 50941,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5"
+ },
+ {
+ "bitrate": 288000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "13_1889417257555578880"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/2FNy2iJoG3",
+ "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1",
+ "id_str": "1889417257555578880",
+ "indices": [
+ 126,
+ 149
+ ],
+ "media_key": "13_1889417257555578880",
+ "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg",
+ "type": "video",
+ "url": "https://t.co/2FNy2iJoG3",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 50941,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5"
+ },
+ {
+ "bitrate": 288000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "13_1889417257555578880"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 21828,
+ "favorited": false,
+ "full_text": "Chuck Schumer says, “everyone knows there's waste in government that should be cut, but DOGE is using a meat axe.”\n\nThoughts? https://t.co/2FNy2iJoG3",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 2438,
+ "reply_count": 22735,
+ "retweet_count": 3621,
+ "retweeted": false,
+ "user_id_str": "1389833864122613761",
+ "id_str": "1889417340355227750"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 1940,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 15:35:20 +0000 2025",
+ "conversation_id_str": "1889699817229631996",
+ "display_text_range": [
+ 0,
+ 78
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "17494010",
+ "name": "Chuck Schumer",
+ "screen_name": "SenSchumer",
+ "indices": [
+ 6,
+ 17
+ ]
+ }
+ ]
+ },
+ "favorite_count": 161484,
+ "favorited": false,
+ "full_text": "Well, @SenSchumer does admit there is waste in government, so that’s progress!",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 2083,
+ "quoted_status_id_str": "1889417340355227750",
+ "quoted_status_permalink": {
+ "url": "https://t.co/VIeIp7SJKy",
+ "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750",
+ "display": "x.com/ianonpatriot/s…"
+ },
+ "reply_count": 37794,
+ "retweet_count": 22224,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889699817229631996"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889742106266075435",
+ "sortIndex": "1891186292176191472",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889742106266075435",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889742106266075435"
+ ],
+ "editable_until_msecs": "1739388202501",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:23:22 +0000 2025",
+ "conversation_id_str": "1889742106266075435",
+ "display_text_range": [
+ 0,
+ 39
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 16,
+ 39
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "source_status_id_str": "1889729151495471534",
+ "source_user_id_str": "44196397",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 16,
+ 39
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "source_status_id_str": "1889729151495471534",
+ "source_user_id_str": "44196397",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: \uD83D\uDC4C https://t.co/oYEPNSISEg",
+ "is_quote_status": false,
+ "lang": "qme",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 51319,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889742106266075435",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889729151495471534",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 124168,
+ "followers_count": 217858841,
+ "friends_count": 1030,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160170,
+ "location": "",
+ "media_count": 3371,
+ "name": "Elon Musk",
+ "normal_followers_count": 217858841,
+ "pinned_tweet_ids_str": [
+ "1890958798841389499"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70629,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889729151495471534"
+ ],
+ "editable_until_msecs": "1739385113000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "39238133",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 9956,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:31:53 +0000 2025",
+ "conversation_id_str": "1889729151495471534",
+ "display_text_range": [
+ 0,
+ 1
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 2,
+ 25
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 2,
+ 25
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 592731,
+ "favorited": false,
+ "full_text": "\uD83D\uDC4C https://t.co/oYEPNSISEg",
+ "is_quote_status": false,
+ "lang": "qme",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 3716,
+ "reply_count": 19880,
+ "retweet_count": 51319,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889729151495471534"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191505",
+ "sortIndex": "1891186292176191471",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1891186292176191505-tweet-1889721288207519894",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889721288207519894",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889721288207519894"
+ ],
+ "editable_until_msecs": "1739383239000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "5",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:00:39 +0000 2025",
+ "conversation_id_str": "1889721288207519894",
+ "display_text_range": [
+ 0,
+ 42
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Where code meets canvas and creates beauty",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 4,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889721288207519894"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1891186292176191505-tweet-1889739476622254484",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889739476622254484",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 135,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889739476622254484"
+ ],
+ "editable_until_msecs": "1739387575000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:12:55 +0000 2025",
+ "conversation_id_str": "1889721288207519894",
+ "display_text_range": [
+ 17,
+ 57
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Crafting the neural pathways of tomorrow",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889721288207519894",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889739476622254484"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889721288207519894",
+ "1889739476622254484"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "cursor-top-1891186292176191489",
+ "sortIndex": "1891186292176191489",
+ "content": {
+ "entryType": "TimelineTimelineCursor",
+ "__typename": "TimelineTimelineCursor",
+ "value": "DAABCgABGj7X6a1AJxEKAAIaPte2pRbhHwgAAwAAAAEAAA",
+ "cursorType": "Top"
+ }
+ },
+ {
+ "entryId": "cursor-bottom-1891186292176191470",
+ "sortIndex": "1891186292176191470",
+ "content": {
+ "entryType": "TimelineTimelineCursor",
+ "__typename": "TimelineTimelineCursor",
+ "value": "DAABCgABGj7X6a0__-wKAAIaObQKrhohlAgAAwAAAAIAAA",
+ "cursorType": "Bottom"
+ }
+ }
+ ]
+ }
+ ],
+ "metadata": {
+ "scribeConfig": {
+ "page": "profileAll"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/XAPIUserTweetsAndRepliesMedia.json b/testdata/XAPIUserTweetsAndRepliesMedia.json
new file mode 100644
index 00000000..cc46e852
--- /dev/null
+++ b/testdata/XAPIUserTweetsAndRepliesMedia.json
@@ -0,0 +1,8296 @@
+{
+ "data": {
+ "user": {
+ "result": {
+ "__typename": "User",
+ "timeline_v2": {
+ "timeline": {
+ "instructions": [
+ {
+ "type": "TimelineClearCache"
+ },
+ {
+ "type": "TimelineAddEntries",
+ "entries": [
+ {
+ "entryId": "tweet-1890513848811090236",
+ "sortIndex": "1890516651804196864",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890513848811090236",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890513848811090236"
+ ],
+ "editable_until_msecs": "1739572200000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:30:00 +0000 2025",
+ "conversation_id_str": "1890513848811090236",
+ "display_text_range": [
+ 0,
+ 28
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/MMfXeoZEdi",
+ "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1",
+ "id_str": "1890513743144185859",
+ "indices": [
+ 29,
+ 52
+ ],
+ "media_key": "7_1890513743144185859",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg",
+ "type": "video",
+ "url": "https://t.co/MMfXeoZEdi",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1920,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1200,
+ "w": 675,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 680,
+ "w": 383,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1920,
+ "width": 1080,
+ "focus_rects": []
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 9,
+ 16
+ ],
+ "duration_millis": 53111,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12"
+ },
+ {
+ "bitrate": 632000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12"
+ },
+ {
+ "bitrate": 950000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1890513743144185859"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "check out this video i found https://t.co/MMfXeoZEdi",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890513848811090236"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512294670454995",
+ "sortIndex": "1890516651804196863",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512294670454995",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512294670454995"
+ ],
+ "editable_until_msecs": "1739571829000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512222050304488",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512222050304488"
+ ],
+ "editable_until_msecs": "1739571812000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quotedRefResult": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755"
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:32 +0000 2025",
+ "conversation_id_str": "1890512222050304488",
+ "display_text_range": [
+ 0,
+ 21
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this is a quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 1,
+ "quoted_status_id_str": "1889763065991659755",
+ "quoted_status_permalink": {
+ "url": "https://t.co/z3Cf9ZfMLr",
+ "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755",
+ "display": "x.com/aurorabyte7932…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512222050304488"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:49 +0000 2025",
+ "conversation_id_str": "1890512294670454995",
+ "display_text_range": [
+ 0,
+ 23
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this a self-quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1890512222050304488",
+ "quoted_status_permalink": {
+ "url": "https://t.co/LOm3Ov3h0l",
+ "expanded": "https://twitter.com/nexamind91326/status/1890512222050304488",
+ "display": "x.com/nexamind91326/…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512294670454995"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512222050304488",
+ "sortIndex": "1890516651804196862",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512222050304488",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512222050304488"
+ ],
+ "editable_until_msecs": "1739571812000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889763065991659755"
+ ],
+ "editable_until_msecs": "1739393199000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "4",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:39 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "From digital chaos to artistic order",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 1,
+ "reply_count": 3,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889763065991659755"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:23:32 +0000 2025",
+ "conversation_id_str": "1890512222050304488",
+ "display_text_range": [
+ 0,
+ 21
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "this is a quote tweet",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 1,
+ "quoted_status_id_str": "1889763065991659755",
+ "quoted_status_permalink": {
+ "url": "https://t.co/z3Cf9ZfMLr",
+ "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755",
+ "display": "x.com/aurorabyte7932…"
+ },
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512222050304488"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1890512076189114426",
+ "sortIndex": "1890516651804196861",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1890512076189114426",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1890512076189114426"
+ ],
+ "editable_until_msecs": "1739571777000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Fri Feb 14 21:22:57 +0000 2025",
+ "conversation_id_str": "1890512076189114426",
+ "display_text_range": [
+ 0,
+ 19
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/eBFfDPOPz6",
+ "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1",
+ "id_str": "1890512052424466432",
+ "indices": [
+ 20,
+ 43
+ ],
+ "media_key": "3_1890512052424466432",
+ "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg",
+ "type": "photo",
+ "url": "https://t.co/eBFfDPOPz6",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 838,
+ "w": 1350,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 745,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 422,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 838,
+ "width": 1350,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 82,
+ "w": 1350,
+ "h": 756
+ },
+ {
+ "x": 256,
+ "y": 0,
+ "w": 838,
+ "h": 838
+ },
+ {
+ "x": 308,
+ "y": 0,
+ "w": 735,
+ "h": 838
+ },
+ {
+ "x": 466,
+ "y": 0,
+ "w": 419,
+ "h": 838
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1350,
+ "h": 838
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1890512052424466432"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/eBFfDPOPz6",
+ "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1",
+ "id_str": "1890512052424466432",
+ "indices": [
+ 20,
+ 43
+ ],
+ "media_key": "3_1890512052424466432",
+ "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg",
+ "type": "photo",
+ "url": "https://t.co/eBFfDPOPz6",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 838,
+ "w": 1350,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 745,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 422,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 838,
+ "width": 1350,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 82,
+ "w": 1350,
+ "h": 756
+ },
+ {
+ "x": 256,
+ "y": 0,
+ "w": 838,
+ "h": 838
+ },
+ {
+ "x": 308,
+ "y": 0,
+ "w": 735,
+ "h": 838
+ },
+ {
+ "x": 466,
+ "y": 0,
+ "w": 419,
+ "h": 838
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1350,
+ "h": 838
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1890512052424466432"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "what a pretty photo https://t.co/eBFfDPOPz6",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1890512076189114426"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889786416764231973",
+ "sortIndex": "1890516651804196860",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889786416764231973",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889786416764231973"
+ ],
+ "editable_until_msecs": "1739398766947",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 21:19:26 +0000 2025",
+ "conversation_id_str": "1889786416764231973",
+ "display_text_range": [
+ 0,
+ 140
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "18839785",
+ "name": "Narendra Modi",
+ "screen_name": "narendramodi",
+ "indices": [
+ 3,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @narendramodi: Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas stu…",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889549988084240447",
+ "quoted_status_permalink": {
+ "url": "https://t.co/ezgVwAcpWA",
+ "expanded": "https://twitter.com/MIB_India/status/1889549988084240447",
+ "display": "x.com/MIB_India/stat…"
+ },
+ "reply_count": 0,
+ "retweet_count": 2833,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889786416764231973",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889575567218835670",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODgzOTc4NQ==",
+ "rest_id": "18839785",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Sat Jan 10 17:18:56 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Prime Minister of India",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "narendramodi.in",
+ "expanded_url": "http://www.narendramodi.in",
+ "url": "https://t.co/m2qxixtyKj",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 0,
+ "followers_count": 105351339,
+ "friends_count": 2683,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 31386,
+ "location": "India",
+ "media_count": 18166,
+ "name": "Narendra Modi",
+ "normal_followers_count": 105351339,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "narendramodi",
+ "statuses_count": 45468,
+ "translator_type": "regular",
+ "url": "https://t.co/m2qxixtyKj",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889575567218835670"
+ ],
+ "editable_until_msecs": "1739348496000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1145171",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk1NzU1NjcxMjI0MTk3MTI=",
+ "text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’ episode. Do watch. #PPC2025 #ExamWarriors",
+ "entity_set": {
+ "hashtags": [
+ {
+ "indices": [
+ 296,
+ 304
+ ],
+ "text": "PPC2025"
+ },
+ {
+ "indices": [
+ 305,
+ 318
+ ],
+ "text": "ExamWarriors"
+ }
+ ],
+ "symbols": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 188,
+ 204
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 209,
+ 223
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889549988084240447",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo5MjA0ODgwMzk=",
+ "rest_id": "920488039",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Fri Nov 02 06:26:58 +0000 2012",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Official Twitter account of Ministry of Information and Broadcasting, Government of India. Follow @MIB_Hindi for Tweets in Hindi.",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "mib.gov.in",
+ "expanded_url": "http://mib.gov.in",
+ "url": "https://t.co/utkJBHXmkK",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 238,
+ "followers_count": 2007176,
+ "friends_count": 202,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 2169,
+ "location": "New Delhi, India",
+ "media_count": 49050,
+ "name": "Ministry of Information and Broadcasting",
+ "normal_followers_count": 2007176,
+ "pinned_tweet_ids_str": [
+ "1890297446166851616"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/920488039/1723804750",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1824326673170567168/IJx7AxEA_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "MIB_India",
+ "statuses_count": 193653,
+ "translator_type": "none",
+ "url": "https://t.co/utkJBHXmkK",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "initial_tweet_id": "1889549636047872354",
+ "edit_control_initial": {
+ "edit_tweet_ids": [
+ "1889549636047872354",
+ "1889549988084240447"
+ ],
+ "editable_until_msecs": "1739342314000",
+ "is_edit_eligible": true,
+ "edits_remaining": "4"
+ }
+ },
+ "previous_counts": {
+ "bookmark_count": 0,
+ "favorite_count": 0,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1135698",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk1NDk5ODc5Nzk0MzE5MzY=",
+ "text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of #PPC2025 on 13th February at 10 AM!\n\n#ParikshaPeCharcha \n\n@PMOIndia @EduMinOfIndia @dpradhanbjp @jayantrld @AshwiniVaishnaw @Murugan_MoS @PIB_India @DDNewslive @airnewsalerts",
+ "entity_set": {
+ "hashtags": [
+ {
+ "indices": [
+ 119,
+ 132
+ ],
+ "text": "ExamWarriors"
+ },
+ {
+ "indices": [
+ 210,
+ 232
+ ],
+ "text": "ParikshaPeCharcha2025"
+ },
+ {
+ "indices": [
+ 273,
+ 281
+ ],
+ "text": "PPC2025"
+ },
+ {
+ "indices": [
+ 310,
+ 328
+ ],
+ "text": "ParikshaPeCharcha"
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 5,
+ 21
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 89,
+ 103
+ ]
+ },
+ {
+ "id_str": "471741741",
+ "name": "PMO India",
+ "screen_name": "PMOIndia",
+ "indices": [
+ 331,
+ 340
+ ]
+ },
+ {
+ "id_str": "2574232910",
+ "name": "Ministry of Education",
+ "screen_name": "EduMinOfIndia",
+ "indices": [
+ 341,
+ 355
+ ]
+ },
+ {
+ "id_str": "1897514666",
+ "name": "Dharmendra Pradhan",
+ "screen_name": "dpradhanbjp",
+ "indices": [
+ 356,
+ 368
+ ]
+ },
+ {
+ "id_str": "2864060538",
+ "name": "Jayant Singh",
+ "screen_name": "jayantrld",
+ "indices": [
+ 369,
+ 379
+ ]
+ },
+ {
+ "id_str": "852579395315171328",
+ "name": "Ashwini Vaishnaw",
+ "screen_name": "AshwiniVaishnaw",
+ "indices": [
+ 380,
+ 396
+ ]
+ },
+ {
+ "id_str": "913051220796858369",
+ "name": "Dr.L.Murugan",
+ "screen_name": "Murugan_MoS",
+ "indices": [
+ 397,
+ 409
+ ]
+ },
+ {
+ "id_str": "231033118",
+ "name": "PIB India",
+ "screen_name": "PIB_India",
+ "indices": [
+ 410,
+ 420
+ ]
+ },
+ {
+ "id_str": "1100927498",
+ "name": "DD News",
+ "screen_name": "DDNewslive",
+ "indices": [
+ 421,
+ 432
+ ]
+ },
+ {
+ "id_str": "1056850669",
+ "name": "All India Radio News",
+ "screen_name": "airnewsalerts",
+ "indices": [
+ 433,
+ 447
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 44,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 05:39:57 +0000 2025",
+ "conversation_id_str": "1889549988084240447",
+ "display_text_range": [
+ 0,
+ 280
+ ],
+ "entities": {
+ "hashtags": [
+ {
+ "indices": [
+ 123,
+ 136
+ ],
+ "text": "ExamWarriors"
+ },
+ {
+ "indices": [
+ 214,
+ 236
+ ],
+ "text": "ParikshaPeCharcha2025"
+ }
+ ],
+ "media": [
+ {
+ "display_url": "pic.x.com/qFVT78TzCc",
+ "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1",
+ "id_str": "1889547251401494528",
+ "indices": [
+ 281,
+ 304
+ ],
+ "media_key": "7_1889547251401494528",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg",
+ "type": "video",
+ "url": "https://t.co/qFVT78TzCc",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1080,
+ "w": 1920,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1080,
+ "width": 1920,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 123320,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14"
+ },
+ {
+ "bitrate": 10368000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889547251401494528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 5,
+ 21
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 93,
+ 107
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/qFVT78TzCc",
+ "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1",
+ "id_str": "1889547251401494528",
+ "indices": [
+ 281,
+ 304
+ ],
+ "media_key": "7_1889547251401494528",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg",
+ "type": "video",
+ "url": "https://t.co/qFVT78TzCc",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 1080,
+ "w": 1920,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1080,
+ "width": 1920,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 123320,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14"
+ },
+ {
+ "bitrate": 10368000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889547251401494528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 1129,
+ "favorited": false,
+ "full_text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of https://t.co/qFVT78TzCc",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 12,
+ "reply_count": 65,
+ "retweet_count": 200,
+ "retweeted": false,
+ "user_id_str": "920488039",
+ "id_str": "1889549988084240447"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 277,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 07:21:36 +0000 2025",
+ "conversation_id_str": "1889575567218835670",
+ "display_text_range": [
+ 0,
+ 276
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "3992637442",
+ "name": "Gaurav Chaudhary",
+ "screen_name": "TechnicalGuruji",
+ "indices": [
+ 188,
+ 204
+ ]
+ },
+ {
+ "id_str": "1109329332",
+ "name": "Radhika Gupta",
+ "screen_name": "iRadhikaGupta",
+ "indices": [
+ 209,
+ 223
+ ]
+ }
+ ]
+ },
+ "favorite_count": 15904,
+ "favorited": false,
+ "full_text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 34,
+ "quoted_status_id_str": "1889549988084240447",
+ "quoted_status_permalink": {
+ "url": "https://t.co/ezgVwAcpWA",
+ "expanded": "https://twitter.com/MIB_India/status/1889549988084240447",
+ "display": "x.com/MIB_India/stat…"
+ },
+ "reply_count": 432,
+ "retweet_count": 2833,
+ "retweeted": true,
+ "user_id_str": "18839785",
+ "id_str": "1889575567218835670"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1890516651804196869",
+ "sortIndex": "1890516651804196859",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "who-to-follow-1890516651804196869-user-2455740283",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoyNDU1NzQwMjgz",
+ "rest_id": "2455740283",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Mon Apr 21 00:28:42 +0000 2014",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "X Super Official CEO",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "amazon.com/beastgames",
+ "expanded_url": "https://www.amazon.com/beastgames",
+ "url": "https://t.co/e8ZoaSIchZ",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 23558,
+ "followers_count": 32197604,
+ "friends_count": 2068,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 8441,
+ "location": "Follow me for a cookie",
+ "media_count": 873,
+ "name": "MrBeast",
+ "normal_followers_count": 32197604,
+ "pinned_tweet_ids_str": [
+ "1878132133144715658"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1733506553",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "MrBeast",
+ "statuses_count": 7011,
+ "translator_type": "none",
+ "url": "https://t.co/e8ZoaSIchZ",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679573344159510535",
+ "professional_type": "Creator",
+ "category": [
+ {
+ "id": 933,
+ "name": "Media Personality",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true
+ },
+ "super_follow_eligible": true
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1890516651804196869-user-34743251",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjozNDc0MzI1MQ==",
+ "rest_id": "34743251",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Square",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Thu Apr 23 21:53:30 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "spacex.com",
+ "expanded_url": "http://spacex.com",
+ "url": "https://t.co/VOJ6qEctND",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 494,
+ "followers_count": 38131084,
+ "friends_count": 119,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 43016,
+ "location": "Earth",
+ "media_count": 3654,
+ "name": "SpaceX",
+ "normal_followers_count": 38131084,
+ "pinned_tweet_ids_str": [
+ "1879290988285620717"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "SpaceX",
+ "statuses_count": 9765,
+ "translator_type": "none",
+ "url": "https://t.co/VOJ6qEctND",
+ "verified": false,
+ "verified_type": "Business",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1681839322029502464",
+ "professional_type": "Business",
+ "category": []
+ },
+ "tipjar_settings": {}
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "who-to-follow-1890516651804196869-user-11348282",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineUser",
+ "__typename": "TimelineUser",
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxMTM0ODI4Mg==",
+ "rest_id": "11348282",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Square",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Wed Dec 19 20:20:32 +0000 2007",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "There's space for everybody. ✨\n\nVerification: https://t.co/8nok3NP4PW",
+ "entities": {
+ "description": {
+ "urls": [
+ {
+ "display_url": "nasa.gov/socialmedia",
+ "expanded_url": "http://nasa.gov/socialmedia",
+ "url": "https://t.co/8nok3NP4PW",
+ "indices": [
+ 46,
+ 69
+ ]
+ }
+ ]
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "nasa.gov",
+ "expanded_url": "http://www.nasa.gov/",
+ "url": "https://t.co/9NkQJKAnuU",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 16404,
+ "followers_count": 85348909,
+ "friends_count": 171,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 97201,
+ "location": "Pale Blue Dot",
+ "media_count": 27347,
+ "name": "NASA",
+ "normal_followers_count": 85348909,
+ "pinned_tweet_ids_str": [
+ "1890440134597722355"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/11348282/1718393721",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321163587679784960/0ZxKlEKB_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "NASA",
+ "statuses_count": 72695,
+ "translator_type": "regular",
+ "url": "https://t.co/9NkQJKAnuU",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ },
+ "userDisplayType": "User"
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "element": "user",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "displayType": "Vertical",
+ "header": {
+ "displayType": "Classic",
+ "text": "Who to follow",
+ "sticky": false
+ },
+ "footer": {
+ "displayType": "Classic",
+ "text": "Show more",
+ "landingUrl": {
+ "url": "twitter://connect_people?user_id=1769426369526771712&display_location=profile_wtf_showmore",
+ "urlType": "DeepLink"
+ }
+ },
+ "clientEventInfo": {
+ "component": "suggest_who_to_follow",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "WhoToFollow",
+ "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA",
+ "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889776036763533445",
+ "sortIndex": "1890516651804196858",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889776036763533445",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889776036763533445"
+ ],
+ "editable_until_msecs": "1739396292162",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": true,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:38:12 +0000 2025",
+ "conversation_id_str": "1889776036763533445",
+ "display_text_range": [
+ 0,
+ 139
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "18839785",
+ "name": "Narendra Modi",
+ "screen_name": "narendramodi",
+ "indices": [
+ 3,
+ 16
+ ]
+ },
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 77,
+ 92
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @narendramodi: Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle…",
+ "is_quote_status": false,
+ "lang": "fr",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 2852,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889776036763533445",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889660611564544051",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODgzOTc4NQ==",
+ "rest_id": "18839785",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": true,
+ "created_at": "Sat Jan 10 17:18:56 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Prime Minister of India",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "narendramodi.in",
+ "expanded_url": "http://www.narendramodi.in",
+ "url": "https://t.co/m2qxixtyKj",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 0,
+ "followers_count": 105351339,
+ "friends_count": 2683,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 31386,
+ "location": "India",
+ "media_count": 18166,
+ "name": "Narendra Modi",
+ "normal_followers_count": 105351339,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "narendramodi",
+ "statuses_count": 45468,
+ "translator_type": "regular",
+ "url": "https://t.co/m2qxixtyKj",
+ "verified": false,
+ "verified_type": "Government",
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889660611564544051"
+ ],
+ "editable_until_msecs": "1739368772000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": true,
+ "views": {
+ "count": "735452",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "note_tweet": {
+ "is_expandable": true,
+ "note_tweet_results": {
+ "result": {
+ "id": "Tm90ZVR3ZWV0OjE4ODk2NjA2MTE0MzQ1MjA1Nzc=",
+ "text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec les leaders de l'industrie joueront un rôle crucial pour stimuler la connectivité, les chaînes d'approvisionnement et la croissance économique.\n\nNous nous efforçons de renforcer la coopération entre l'Inde et la France dans les domaines de la logistique, du développement durable et du commerce mondial, en consolidant notre vision commune d'un avenir maritime meilleur.",
+ "entity_set": {
+ "hashtags": [],
+ "symbols": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 59,
+ 74
+ ]
+ }
+ ]
+ },
+ "richtext": {
+ "richtext_tags": []
+ },
+ "media": {
+ "inline_media": []
+ }
+ }
+ }
+ },
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 78,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 12:59:32 +0000 2025",
+ "conversation_id_str": "1889660611564544051",
+ "display_text_range": [
+ 0,
+ 278
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660522800488449",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660522800488449",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1358,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 795,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 451,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2715,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 184,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1381,
+ "y": 0,
+ "w": 2715,
+ "h": 2715
+ },
+ {
+ "x": 1714,
+ "y": 0,
+ "w": 2382,
+ "h": 2715
+ },
+ {
+ "x": 2738,
+ "y": 0,
+ "w": 1358,
+ "h": 2715
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2715
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660522800488449"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660550935953408",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660550935953408",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1652,
+ "y": 558,
+ "h": 84,
+ "w": 84
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 967,
+ "y": 326,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 548,
+ "y": 185,
+ "h": 27,
+ "w": 27
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 3304,
+ "y": 1116,
+ "h": 168,
+ "w": 168
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1366,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 800,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 453,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2731,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1365,
+ "y": 0,
+ "w": 2731,
+ "h": 2731
+ },
+ {
+ "x": 1700,
+ "y": 0,
+ "w": 2396,
+ "h": 2731
+ },
+ {
+ "x": 2491,
+ "y": 0,
+ "w": 1366,
+ "h": 2731
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2731
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660550935953408"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660574264643584",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660574264643584",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 336,
+ "y": 514,
+ "h": 74,
+ "w": 74
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 196,
+ "y": 301,
+ "h": 43,
+ "w": 43
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 111,
+ "y": 170,
+ "h": 24,
+ "w": 24
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 672,
+ "y": 1028,
+ "h": 148,
+ "w": 148
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1239,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 726,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 411,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2477,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2477,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2173,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1239,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2477
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660574264643584"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660596410523650",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660596410523650",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1458,
+ "y": 252,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1642,
+ "y": 260,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 870,
+ "y": 290,
+ "h": 76,
+ "w": 76
+ },
+ {
+ "x": 416,
+ "y": 300,
+ "h": 86,
+ "w": 86
+ },
+ {
+ "x": 688,
+ "y": 312,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1008,
+ "y": 330,
+ "h": 74,
+ "w": 74
+ },
+ {
+ "x": 1198,
+ "y": 332,
+ "h": 70,
+ "w": 70
+ },
+ {
+ "x": 566,
+ "y": 348,
+ "h": 68,
+ "w": 68
+ },
+ {
+ "x": 162,
+ "y": 254,
+ "h": 90,
+ "w": 90
+ },
+ {
+ "x": 1062,
+ "y": 308,
+ "h": 80,
+ "w": 80
+ },
+ {
+ "x": 1656,
+ "y": 210,
+ "h": 150,
+ "w": 150
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 854,
+ "y": 147,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 962,
+ "y": 152,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 509,
+ "y": 169,
+ "h": 44,
+ "w": 44
+ },
+ {
+ "x": 243,
+ "y": 175,
+ "h": 50,
+ "w": 50
+ },
+ {
+ "x": 403,
+ "y": 182,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 590,
+ "y": 193,
+ "h": 43,
+ "w": 43
+ },
+ {
+ "x": 701,
+ "y": 194,
+ "h": 41,
+ "w": 41
+ },
+ {
+ "x": 331,
+ "y": 203,
+ "h": 39,
+ "w": 39
+ },
+ {
+ "x": 94,
+ "y": 148,
+ "h": 52,
+ "w": 52
+ },
+ {
+ "x": 622,
+ "y": 180,
+ "h": 46,
+ "w": 46
+ },
+ {
+ "x": 970,
+ "y": 123,
+ "h": 87,
+ "w": 87
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 484,
+ "y": 83,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 545,
+ "y": 86,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 288,
+ "y": 96,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 138,
+ "y": 99,
+ "h": 28,
+ "w": 28
+ },
+ {
+ "x": 228,
+ "y": 103,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 334,
+ "y": 109,
+ "h": 24,
+ "w": 24
+ },
+ {
+ "x": 397,
+ "y": 110,
+ "h": 23,
+ "w": 23
+ },
+ {
+ "x": 187,
+ "y": 115,
+ "h": 22,
+ "w": 22
+ },
+ {
+ "x": 53,
+ "y": 84,
+ "h": 29,
+ "w": 29
+ },
+ {
+ "x": 352,
+ "y": 102,
+ "h": 26,
+ "w": 26
+ },
+ {
+ "x": 549,
+ "y": 69,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 2916,
+ "y": 504,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 3284,
+ "y": 520,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 1740,
+ "y": 580,
+ "h": 152,
+ "w": 152
+ },
+ {
+ "x": 832,
+ "y": 600,
+ "h": 172,
+ "w": 172
+ },
+ {
+ "x": 1376,
+ "y": 624,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 2016,
+ "y": 660,
+ "h": 148,
+ "w": 148
+ },
+ {
+ "x": 2396,
+ "y": 664,
+ "h": 140,
+ "w": 140
+ },
+ {
+ "x": 1132,
+ "y": 696,
+ "h": 136,
+ "w": 136
+ },
+ {
+ "x": 324,
+ "y": 508,
+ "h": 180,
+ "w": 180
+ },
+ {
+ "x": 2124,
+ "y": 616,
+ "h": 160,
+ "w": 160
+ },
+ {
+ "x": 3312,
+ "y": 420,
+ "h": 300,
+ "w": 300
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1189,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 696,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 395,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2377,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 141,
+ "y": 0,
+ "w": 2377,
+ "h": 2377
+ },
+ {
+ "x": 287,
+ "y": 0,
+ "w": 2085,
+ "h": 2377
+ },
+ {
+ "x": 735,
+ "y": 0,
+ "w": 1189,
+ "h": 2377
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2377
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660596410523650"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1976143068",
+ "name": "Emmanuel Macron",
+ "screen_name": "EmmanuelMacron",
+ "indices": [
+ 59,
+ 74
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660522800488449",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660522800488449",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": []
+ },
+ "medium": {
+ "faces": []
+ },
+ "small": {
+ "faces": []
+ },
+ "orig": {
+ "faces": []
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1358,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 795,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 451,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2715,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 184,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1381,
+ "y": 0,
+ "w": 2715,
+ "h": 2715
+ },
+ {
+ "x": 1714,
+ "y": 0,
+ "w": 2382,
+ "h": 2715
+ },
+ {
+ "x": 2738,
+ "y": 0,
+ "w": 1358,
+ "h": 2715
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2715
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660522800488449"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660550935953408",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660550935953408",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1652,
+ "y": 558,
+ "h": 84,
+ "w": 84
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 967,
+ "y": 326,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 548,
+ "y": 185,
+ "h": 27,
+ "w": 27
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 3304,
+ "y": 1116,
+ "h": 168,
+ "w": 168
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1366,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 800,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 453,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2731,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 1365,
+ "y": 0,
+ "w": 2731,
+ "h": 2731
+ },
+ {
+ "x": 1700,
+ "y": 0,
+ "w": 2396,
+ "h": 2731
+ },
+ {
+ "x": 2491,
+ "y": 0,
+ "w": 1366,
+ "h": 2731
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2731
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660550935953408"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660574264643584",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660574264643584",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 336,
+ "y": 514,
+ "h": 74,
+ "w": 74
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 196,
+ "y": 301,
+ "h": 43,
+ "w": 43
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 111,
+ "y": 170,
+ "h": 24,
+ "w": 24
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 672,
+ "y": 1028,
+ "h": 148,
+ "w": 148
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1239,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 726,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 411,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2477,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2477,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 2173,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1239,
+ "h": 2477
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2477
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660574264643584"
+ }
+ }
+ },
+ {
+ "display_url": "pic.x.com/6LGby2kzQ7",
+ "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1",
+ "id_str": "1889660596410523650",
+ "indices": [
+ 279,
+ 302
+ ],
+ "media_key": "3_1889660596410523650",
+ "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg",
+ "type": "photo",
+ "url": "https://t.co/6LGby2kzQ7",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 1458,
+ "y": 252,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1642,
+ "y": 260,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 870,
+ "y": 290,
+ "h": 76,
+ "w": 76
+ },
+ {
+ "x": 416,
+ "y": 300,
+ "h": 86,
+ "w": 86
+ },
+ {
+ "x": 688,
+ "y": 312,
+ "h": 78,
+ "w": 78
+ },
+ {
+ "x": 1008,
+ "y": 330,
+ "h": 74,
+ "w": 74
+ },
+ {
+ "x": 1198,
+ "y": 332,
+ "h": 70,
+ "w": 70
+ },
+ {
+ "x": 566,
+ "y": 348,
+ "h": 68,
+ "w": 68
+ },
+ {
+ "x": 162,
+ "y": 254,
+ "h": 90,
+ "w": 90
+ },
+ {
+ "x": 1062,
+ "y": 308,
+ "h": 80,
+ "w": 80
+ },
+ {
+ "x": 1656,
+ "y": 210,
+ "h": 150,
+ "w": 150
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 854,
+ "y": 147,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 962,
+ "y": 152,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 509,
+ "y": 169,
+ "h": 44,
+ "w": 44
+ },
+ {
+ "x": 243,
+ "y": 175,
+ "h": 50,
+ "w": 50
+ },
+ {
+ "x": 403,
+ "y": 182,
+ "h": 45,
+ "w": 45
+ },
+ {
+ "x": 590,
+ "y": 193,
+ "h": 43,
+ "w": 43
+ },
+ {
+ "x": 701,
+ "y": 194,
+ "h": 41,
+ "w": 41
+ },
+ {
+ "x": 331,
+ "y": 203,
+ "h": 39,
+ "w": 39
+ },
+ {
+ "x": 94,
+ "y": 148,
+ "h": 52,
+ "w": 52
+ },
+ {
+ "x": 622,
+ "y": 180,
+ "h": 46,
+ "w": 46
+ },
+ {
+ "x": 970,
+ "y": 123,
+ "h": 87,
+ "w": 87
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 484,
+ "y": 83,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 545,
+ "y": 86,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 288,
+ "y": 96,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 138,
+ "y": 99,
+ "h": 28,
+ "w": 28
+ },
+ {
+ "x": 228,
+ "y": 103,
+ "h": 25,
+ "w": 25
+ },
+ {
+ "x": 334,
+ "y": 109,
+ "h": 24,
+ "w": 24
+ },
+ {
+ "x": 397,
+ "y": 110,
+ "h": 23,
+ "w": 23
+ },
+ {
+ "x": 187,
+ "y": 115,
+ "h": 22,
+ "w": 22
+ },
+ {
+ "x": 53,
+ "y": 84,
+ "h": 29,
+ "w": 29
+ },
+ {
+ "x": 352,
+ "y": 102,
+ "h": 26,
+ "w": 26
+ },
+ {
+ "x": 549,
+ "y": 69,
+ "h": 49,
+ "w": 49
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 2916,
+ "y": 504,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 3284,
+ "y": 520,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 1740,
+ "y": 580,
+ "h": 152,
+ "w": 152
+ },
+ {
+ "x": 832,
+ "y": 600,
+ "h": 172,
+ "w": 172
+ },
+ {
+ "x": 1376,
+ "y": 624,
+ "h": 156,
+ "w": 156
+ },
+ {
+ "x": 2016,
+ "y": 660,
+ "h": 148,
+ "w": 148
+ },
+ {
+ "x": 2396,
+ "y": 664,
+ "h": 140,
+ "w": 140
+ },
+ {
+ "x": 1132,
+ "y": 696,
+ "h": 136,
+ "w": 136
+ },
+ {
+ "x": 324,
+ "y": 508,
+ "h": 180,
+ "w": 180
+ },
+ {
+ "x": 2124,
+ "y": 616,
+ "h": 160,
+ "w": 160
+ },
+ {
+ "x": 3312,
+ "y": 420,
+ "h": 300,
+ "w": 300
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1189,
+ "w": 2048,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 696,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 395,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 2377,
+ "width": 4096,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2294
+ },
+ {
+ "x": 141,
+ "y": 0,
+ "w": 2377,
+ "h": 2377
+ },
+ {
+ "x": 287,
+ "y": 0,
+ "w": 2085,
+ "h": 2377
+ },
+ {
+ "x": 735,
+ "y": 0,
+ "w": 1189,
+ "h": 2377
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 4096,
+ "h": 2377
+ }
+ ]
+ },
+ "allow_download_status": {
+ "allow_download": true
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889660596410523650"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 17872,
+ "favorited": false,
+ "full_text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec https://t.co/6LGby2kzQ7",
+ "is_quote_status": false,
+ "lang": "fr",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 39,
+ "reply_count": 283,
+ "retweet_count": 2852,
+ "retweeted": true,
+ "user_id_str": "18839785",
+ "id_str": "1889660611564544051"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889773435984945409",
+ "sortIndex": "1890516651804196857",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889773435984945409",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889773435984945409"
+ ],
+ "editable_until_msecs": "1739395672088",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:27:52 +0000 2025",
+ "conversation_id_str": "1889773435984945409",
+ "display_text_range": [
+ 0,
+ 18
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8",
+ "is_quote_status": true,
+ "lang": "art",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889727599800140182",
+ "quoted_status_permalink": {
+ "url": "https://t.co/Ew6dWp2auD",
+ "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182",
+ "display": "x.com/charliekirk11/…"
+ },
+ "reply_count": 0,
+ "retweet_count": 42626,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889773435984945409",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889734237495935385",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Volunteer Tech Support",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123401,
+ "followers_count": 217669747,
+ "friends_count": 1025,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160055,
+ "location": "",
+ "media_count": 3363,
+ "name": "Elon Musk",
+ "normal_followers_count": 217669747,
+ "pinned_tweet_ids_str": [
+ "1890173376964313388"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70484,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889734237495935385"
+ ],
+ "editable_until_msecs": "1739386326000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "13517712",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889727599800140182",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoyOTI5MjkyNzE=",
+ "rest_id": "292929271",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/TPUSA",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1870964730224877568/1oaBEqYE_bigger.jpg"
+ },
+ "description": "Turning Point USA",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": false,
+ "created_at": "Wed May 04 13:37:25 +0000 2011",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Founder & CEO: @TPUSA + @TPAction_ • Host: The Charlie Kirk Show • Click the link below to subscribe \uD83C\uDDFA\uD83C\uDDF8",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "podcasts.apple.com/us/podcast/the…",
+ "expanded_url": "https://podcasts.apple.com/us/podcast/the-charlie-kirk-show/id1460600818",
+ "url": "https://t.co/qiKLOzdk76",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 35910,
+ "followers_count": 4683124,
+ "friends_count": 186051,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 10684,
+ "location": "Phoenix, AZ",
+ "media_count": 10355,
+ "name": "Charlie Kirk",
+ "normal_followers_count": 4683124,
+ "pinned_tweet_ids_str": [
+ "1890445913199415667"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/292929271/1722636385",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1819144572179828740/z3ZuWW2J_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "charliekirk11",
+ "statuses_count": 67470,
+ "translator_type": "none",
+ "url": "https://t.co/qiKLOzdk76",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889727599800140182"
+ ],
+ "editable_until_msecs": "1739384743000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "16258713",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 3791,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:25:43 +0000 2025",
+ "conversation_id_str": "1889727599800140182",
+ "display_text_range": [
+ 0,
+ 266
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/KMfAj2E97w",
+ "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1",
+ "id_str": "1889724224182329344",
+ "indices": [
+ 243,
+ 266
+ ],
+ "media_key": "7_1889724224182329344",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg",
+ "source_status_id_str": "1889724367350726930",
+ "source_user_id_str": "1810612162760671232",
+ "type": "video",
+ "url": "https://t.co/KMfAj2E97w",
+ "additional_media_info": {
+ "monetizable": false,
+ "source_user": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy",
+ "rest_id": "1810612162760671232",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Tue Jul 09 09:49:33 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Open-Source Intel • Breaking News • Politics",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "buymeacoffee.com/globalbeaconn",
+ "expanded_url": "https://buymeacoffee.com/globalbeaconn",
+ "url": "https://t.co/lMzquGOUk6",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 209398,
+ "followers_count": 4870,
+ "friends_count": 1884,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 23,
+ "location": "United States",
+ "media_count": 4687,
+ "name": "The Global Beacon",
+ "normal_followers_count": 4870,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "globalbeaconn",
+ "statuses_count": 9652,
+ "translator_type": "none",
+ "url": "https://t.co/lMzquGOUk6",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1810641258655936543",
+ "professional_type": "Business",
+ "category": [
+ {
+ "id": 579,
+ "name": "Media & News",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true,
+ "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84"
+ }
+ }
+ }
+ }
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 59648,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889724224182329344"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/KMfAj2E97w",
+ "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1",
+ "id_str": "1889724224182329344",
+ "indices": [
+ 243,
+ 266
+ ],
+ "media_key": "7_1889724224182329344",
+ "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg",
+ "source_status_id_str": "1889724367350726930",
+ "source_user_id_str": "1810612162760671232",
+ "type": "video",
+ "url": "https://t.co/KMfAj2E97w",
+ "additional_media_info": {
+ "monetizable": false,
+ "source_user": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy",
+ "rest_id": "1810612162760671232",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Tue Jul 09 09:49:33 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "Open-Source Intel • Breaking News • Politics",
+ "entities": {
+ "description": {
+ "urls": []
+ },
+ "url": {
+ "urls": [
+ {
+ "display_url": "buymeacoffee.com/globalbeaconn",
+ "expanded_url": "https://buymeacoffee.com/globalbeaconn",
+ "url": "https://t.co/lMzquGOUk6",
+ "indices": [
+ 0,
+ 23
+ ]
+ }
+ ]
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 209398,
+ "followers_count": 4870,
+ "friends_count": 1884,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 23,
+ "location": "United States",
+ "media_count": 4687,
+ "name": "The Global Beacon",
+ "normal_followers_count": 4870,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "globalbeaconn",
+ "statuses_count": 9652,
+ "translator_type": "none",
+ "url": "https://t.co/lMzquGOUk6",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1810641258655936543",
+ "professional_type": "Business",
+ "category": [
+ {
+ "id": 579,
+ "name": "Media & News",
+ "icon_name": "IconBriefcaseStroke"
+ }
+ ]
+ },
+ "tipjar_settings": {
+ "is_enabled": true,
+ "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84"
+ }
+ }
+ }
+ }
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 59648,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e"
+ },
+ {
+ "bitrate": 256000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "7_1889724224182329344"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 107816,
+ "favorited": false,
+ "full_text": "BREAKING: A federal judge has ruled that President Trump does in fact have constitutional authority to freeze or limit certain federal funding. This means the Trump White House can withhold funding without the district court's prior approval. https://t.co/KMfAj2E97w",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 1393,
+ "reply_count": 3196,
+ "retweet_count": 19813,
+ "retweeted": false,
+ "user_id_str": "292929271",
+ "id_str": "1889727599800140182"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 3466,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:52:06 +0000 2025",
+ "conversation_id_str": "1889734237495935385",
+ "display_text_range": [
+ 0,
+ 4
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 231387,
+ "favorited": false,
+ "full_text": "\uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8",
+ "is_quote_status": true,
+ "lang": "art",
+ "quote_count": 1227,
+ "quoted_status_id_str": "1889727599800140182",
+ "quoted_status_permalink": {
+ "url": "https://t.co/Ew6dWp2auD",
+ "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182",
+ "display": "x.com/charliekirk11/…"
+ },
+ "reply_count": 5559,
+ "retweet_count": 42626,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889734237495935385"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196872",
+ "sortIndex": "1890516651804196856",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196872-tweet-1889763065991659755",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889763065991659755",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889763065991659755"
+ ],
+ "editable_until_msecs": "1739393199000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "4",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:39 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "From digital chaos to artistic order",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 1,
+ "reply_count": 3,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889763065991659755"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196872-tweet-1889768255771816233",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889768255771816233",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889768255771816233"
+ ],
+ "editable_until_msecs": "1739394437000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:07:17 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 17,
+ 58
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Innovative thought, redefining boundaries",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889763065991659755",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889768255771816233"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889763065991659755",
+ "1889768255771816233"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196873",
+ "sortIndex": "1890516651804196855",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196873-tweet-1889762934848626695",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889762934848626695",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889762934848626695"
+ ],
+ "editable_until_msecs": "1739393168000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "6",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:46:08 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 46
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Where technology meets the zenith of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889762934848626695"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196873-tweet-1889765541784531112",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889765541784531112",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889765541784531112"
+ ],
+ "editable_until_msecs": "1739393789000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:56:29 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 50
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Synthesizing future intelligence, shaping tomorrow",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889762934848626695",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 2,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889765541784531112"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196873-tweet-1889768205297528981",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889768205297528981",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889768205297528981"
+ ],
+ "editable_until_msecs": "1739394424000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 20:07:04 +0000 2025",
+ "conversation_id_str": "1889762934848626695",
+ "display_text_range": [
+ 0,
+ 50
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "The crucible of cognitive evolution and technology",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889765541784531112",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889768205297528981"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889762934848626695",
+ "1889765541784531112",
+ "1889768205297528981"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196874",
+ "sortIndex": "1890516651804196854",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196874-tweet-1889765588458692633",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889765588458692633",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889765588458692633"
+ ],
+ "editable_until_msecs": "1739393801000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "1",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:56:41 +0000 2025",
+ "conversation_id_str": "1889763065991659755",
+ "display_text_range": [
+ 17,
+ 63
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Intelligence transformed, the future redefined",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889763065991659755",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889765588458692633"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889763065991659755",
+ "1889765588458692633"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889760338960150978",
+ "sortIndex": "1890516651804196853",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889760338960150978",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889760338960150978"
+ ],
+ "editable_until_msecs": "1739392549000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "2",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:35:49 +0000 2025",
+ "conversation_id_str": "1889760338960150978",
+ "display_text_range": [
+ 0,
+ 40
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Orchestrating the evolution of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889760338960150978"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196876",
+ "sortIndex": "1890516651804196852",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196876-tweet-1889752613794574729",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889752613794574729",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889752613794574729"
+ ],
+ "editable_until_msecs": "1739390707000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:05:07 +0000 2025",
+ "conversation_id_str": "1889752613794574729",
+ "display_text_range": [
+ 0,
+ 33
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Innovating beauty, pixel by pixel",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 2,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889752613794574729"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196876-tweet-1889755137834434745",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889755137834434745",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889755137834434745"
+ ],
+ "editable_until_msecs": "1739391309000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:15:09 +0000 2025",
+ "conversation_id_str": "1889752613794574729",
+ "display_text_range": [
+ 17,
+ 61
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Evolving intellect, one innovation at a time",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889752613794574729",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889755137834434745"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889752613794574729",
+ "1889755137834434745"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196877",
+ "sortIndex": "1890516651804196851",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196877-tweet-1889752489064378392",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889752489064378392",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889752489064378392"
+ ],
+ "editable_until_msecs": "1739390677000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:04:37 +0000 2025",
+ "conversation_id_str": "1889752489064378392",
+ "display_text_range": [
+ 0,
+ 49
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Beyond imagination, within the realm of intellect",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889752489064378392"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196877-tweet-1889755100664692853",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889755100664692853",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889755100664692853"
+ ],
+ "editable_until_msecs": "1739391300000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 19:15:00 +0000 2025",
+ "conversation_id_str": "1889752489064378392",
+ "display_text_range": [
+ 0,
+ 36
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "The pinnacle of cognitive innovation",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889752489064378392",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 1,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889755100664692853"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889752489064378392",
+ "1889755100664692853"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889749874477789437",
+ "sortIndex": "1890516651804196850",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889749874477789437",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889749874477789437"
+ ],
+ "editable_until_msecs": "1739390054587",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:54:14 +0000 2025",
+ "conversation_id_str": "1889749874477789437",
+ "display_text_range": [
+ 0,
+ 92
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ },
+ {
+ "id_str": "17494010",
+ "name": "Chuck Schumer",
+ "screen_name": "SenSchumer",
+ "indices": [
+ 20,
+ 31
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: Well, @SenSchumer does admit there is waste in government, so that’s progress!",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 0,
+ "quoted_status_id_str": "1889417340355227750",
+ "quoted_status_permalink": {
+ "url": "https://t.co/VIeIp7SJKy",
+ "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750",
+ "display": "x.com/ianonpatriot/s…"
+ },
+ "reply_count": 0,
+ "retweet_count": 22259,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889749874477789437",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889699817229631996",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Volunteer Tech Support",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123401,
+ "followers_count": 217669747,
+ "friends_count": 1025,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160055,
+ "location": "",
+ "media_count": 3363,
+ "name": "Elon Musk",
+ "normal_followers_count": 217669747,
+ "pinned_tweet_ids_str": [
+ "1890173376964313388"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70484,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889699817229631996"
+ ],
+ "editable_until_msecs": "1739378120000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "15128388",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "quoted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889417340355227750",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxMzg5ODMzODY0MTIyNjEzNzYx",
+ "rest_id": "1389833864122613761",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Wed May 05 06:46:46 +0000 2021",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "America First • \uD835\uDD4F Breaking News • MAGA\uD83C\uDDFA\uD83C\uDDF8 \uD83D\uDD25just a dude with an IPhone ✝️",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 102888,
+ "followers_count": 473097,
+ "friends_count": 30680,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 959,
+ "location": "Florida, USA",
+ "media_count": 18194,
+ "name": "American AF \uD83C\uDDFA\uD83C\uDDF8",
+ "normal_followers_count": 473097,
+ "pinned_tweet_ids_str": [
+ "1890462582433038766"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389833864122613761/1735220689",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677756031324102659/QmkoTNg5_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "iAnonPatriot",
+ "statuses_count": 78968,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679620629841031170",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false,
+ "cash_app_handle": "DScarberry2",
+ "venmo_handle": "DScarberryy"
+ }
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889417340355227750"
+ ],
+ "editable_until_msecs": "1739310772000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "18564421",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 1078,
+ "bookmarked": false,
+ "created_at": "Tue Feb 11 20:52:52 +0000 2025",
+ "conversation_id_str": "1889417340355227750",
+ "display_text_range": [
+ 0,
+ 125
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/2FNy2iJoG3",
+ "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1",
+ "id_str": "1889417257555578880",
+ "indices": [
+ 126,
+ 149
+ ],
+ "media_key": "13_1889417257555578880",
+ "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg",
+ "type": "video",
+ "url": "https://t.co/2FNy2iJoG3",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 50941,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5"
+ },
+ {
+ "bitrate": 288000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "13_1889417257555578880"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/2FNy2iJoG3",
+ "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1",
+ "id_str": "1889417257555578880",
+ "indices": [
+ 126,
+ 149
+ ],
+ "media_key": "13_1889417257555578880",
+ "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg",
+ "type": "video",
+ "url": "https://t.co/2FNy2iJoG3",
+ "additional_media_info": {
+ "monetizable": false
+ },
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "sizes": {
+ "large": {
+ "h": 720,
+ "w": 1280,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 675,
+ "w": 1200,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 383,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 720,
+ "width": 1280,
+ "focus_rects": []
+ },
+ "video_info": {
+ "aspect_ratio": [
+ 16,
+ 9
+ ],
+ "duration_millis": 50941,
+ "variants": [
+ {
+ "content_type": "application/x-mpegURL",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5"
+ },
+ {
+ "bitrate": 288000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16"
+ },
+ {
+ "bitrate": 832000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16"
+ },
+ {
+ "bitrate": 2176000,
+ "content_type": "video/mp4",
+ "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16"
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "13_1889417257555578880"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 21779,
+ "favorited": false,
+ "full_text": "Chuck Schumer says, “everyone knows there's waste in government that should be cut, but DOGE is using a meat axe.”\n\nThoughts? https://t.co/2FNy2iJoG3",
+ "is_quote_status": false,
+ "lang": "en",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 2435,
+ "reply_count": 22693,
+ "retweet_count": 3610,
+ "retweeted": false,
+ "user_id_str": "1389833864122613761",
+ "id_str": "1889417340355227750"
+ }
+ }
+ },
+ "legacy": {
+ "bookmark_count": 1954,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 15:35:20 +0000 2025",
+ "conversation_id_str": "1889699817229631996",
+ "display_text_range": [
+ 0,
+ 78
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "17494010",
+ "name": "Chuck Schumer",
+ "screen_name": "SenSchumer",
+ "indices": [
+ 6,
+ 17
+ ]
+ }
+ ]
+ },
+ "favorite_count": 161225,
+ "favorited": false,
+ "full_text": "Well, @SenSchumer does admit there is waste in government, so that’s progress!",
+ "is_quote_status": true,
+ "lang": "en",
+ "quote_count": 2076,
+ "quoted_status_id_str": "1889417340355227750",
+ "quoted_status_permalink": {
+ "url": "https://t.co/VIeIp7SJKy",
+ "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750",
+ "display": "x.com/ianonpatriot/s…"
+ },
+ "reply_count": 37604,
+ "retweet_count": 22259,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889699817229631996"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "tweet-1889742106266075435",
+ "sortIndex": "1890516651804196849",
+ "content": {
+ "entryType": "TimelineTimelineItem",
+ "__typename": "TimelineTimelineItem",
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889742106266075435",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889742106266075435"
+ ],
+ "editable_until_msecs": "1739388202501",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:23:22 +0000 2025",
+ "conversation_id_str": "1889742106266075435",
+ "display_text_range": [
+ 0,
+ 39
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 16,
+ 39
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "source_status_id_str": "1889729151495471534",
+ "source_user_id_str": "44196397",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "44196397",
+ "name": "Elon Musk",
+ "screen_name": "elonmusk",
+ "indices": [
+ 3,
+ 12
+ ]
+ }
+ ]
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 16,
+ 39
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "source_status_id_str": "1889729151495471534",
+ "source_user_id_str": "44196397",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "RT @elonmusk: \uD83D\uDC4C https://t.co/oYEPNSISEg",
+ "is_quote_status": false,
+ "lang": "qme",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 51225,
+ "retweeted": true,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889742106266075435",
+ "retweeted_status_result": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889729151495471534",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjo0NDE5NjM5Nw==",
+ "rest_id": "44196397",
+ "affiliates_highlighted_label": {
+ "label": {
+ "url": {
+ "url": "https://twitter.com/X",
+ "urlType": "DeepLink"
+ },
+ "badge": {
+ "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg"
+ },
+ "description": "X",
+ "userLabelType": "BusinessLabel",
+ "userLabelDisplayType": "Badge"
+ }
+ },
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": true,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": false,
+ "can_media_tag": false,
+ "created_at": "Tue Jun 02 20:12:29 +0000 2009",
+ "default_profile": false,
+ "default_profile_image": false,
+ "description": "Volunteer Tech Support",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123401,
+ "followers_count": 217669748,
+ "friends_count": 1025,
+ "has_custom_timelines": true,
+ "is_translator": false,
+ "listed_count": 160055,
+ "location": "",
+ "media_count": 3363,
+ "name": "Elon Musk",
+ "normal_followers_count": 217669748,
+ "pinned_tweet_ids_str": [
+ "1890173376964313388"
+ ],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "elonmusk",
+ "statuses_count": 70484,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "professional": {
+ "rest_id": "1679729435447275522",
+ "professional_type": "Creator",
+ "category": []
+ },
+ "tipjar_settings": {
+ "is_enabled": false
+ },
+ "super_follow_eligible": true
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889729151495471534"
+ ],
+ "editable_until_msecs": "1739385113000",
+ "is_edit_eligible": true,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "38890657",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter for iPhone",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 9942,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:31:53 +0000 2025",
+ "conversation_id_str": "1889729151495471534",
+ "display_text_range": [
+ 0,
+ 1
+ ],
+ "entities": {
+ "hashtags": [],
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 2,
+ 25
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "extended_entities": {
+ "media": [
+ {
+ "display_url": "pic.x.com/oYEPNSISEg",
+ "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1",
+ "id_str": "1889729146969878528",
+ "indices": [
+ 2,
+ 25
+ ],
+ "media_key": "3_1889729146969878528",
+ "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg",
+ "type": "photo",
+ "url": "https://t.co/oYEPNSISEg",
+ "ext_media_availability": {
+ "status": "Available"
+ },
+ "features": {
+ "large": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "medium": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ },
+ "small": {
+ "faces": [
+ {
+ "x": 63,
+ "y": 10,
+ "h": 67,
+ "w": 67
+ }
+ ]
+ },
+ "orig": {
+ "faces": [
+ {
+ "x": 101,
+ "y": 17,
+ "h": 107,
+ "w": 107
+ }
+ ]
+ }
+ },
+ "sizes": {
+ "large": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "medium": {
+ "h": 1013,
+ "w": 1080,
+ "resize": "fit"
+ },
+ "small": {
+ "h": 638,
+ "w": 680,
+ "resize": "fit"
+ },
+ "thumb": {
+ "h": 150,
+ "w": 150,
+ "resize": "crop"
+ }
+ },
+ "original_info": {
+ "height": 1013,
+ "width": 1080,
+ "focus_rects": [
+ {
+ "x": 0,
+ "y": 319,
+ "w": 1080,
+ "h": 605
+ },
+ {
+ "x": 67,
+ "y": 0,
+ "w": 1013,
+ "h": 1013
+ },
+ {
+ "x": 191,
+ "y": 0,
+ "w": 889,
+ "h": 1013
+ },
+ {
+ "x": 573,
+ "y": 0,
+ "w": 507,
+ "h": 1013
+ },
+ {
+ "x": 0,
+ "y": 0,
+ "w": 1080,
+ "h": 1013
+ }
+ ]
+ },
+ "media_results": {
+ "result": {
+ "media_key": "3_1889729146969878528"
+ }
+ }
+ }
+ ]
+ },
+ "favorite_count": 591043,
+ "favorited": false,
+ "full_text": "\uD83D\uDC4C https://t.co/oYEPNSISEg",
+ "is_quote_status": false,
+ "lang": "qme",
+ "possibly_sensitive": false,
+ "possibly_sensitive_editable": true,
+ "quote_count": 3705,
+ "reply_count": 19814,
+ "retweet_count": 51225,
+ "retweeted": true,
+ "user_id_str": "44196397",
+ "id_str": "1889729151495471534"
+ }
+ }
+ }
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196880",
+ "sortIndex": "1890516651804196848",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196880-tweet-1889721288207519894",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889721288207519894",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy",
+ "rest_id": "1769424777998180352",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": false,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:07:40 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 123,
+ "followers_count": 0,
+ "friends_count": 10,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 0,
+ "name": "aurorabyte",
+ "normal_followers_count": 0,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "aurorabyte79324",
+ "statuses_count": 408,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889721288207519894"
+ ],
+ "editable_until_msecs": "1739383239000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "5",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:00:39 +0000 2025",
+ "conversation_id_str": "1889721288207519894",
+ "display_text_range": [
+ 0,
+ 42
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Where code meets canvas and creates beauty",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 4,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769424777998180352",
+ "id_str": "1889721288207519894"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196880-tweet-1889739476622254484",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889739476622254484",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889739476622254484"
+ ],
+ "editable_until_msecs": "1739387575000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "state": "Enabled"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:12:55 +0000 2025",
+ "conversation_id_str": "1889721288207519894",
+ "display_text_range": [
+ 17,
+ 57
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": [
+ {
+ "id_str": "1769424777998180352",
+ "name": "aurorabyte",
+ "screen_name": "aurorabyte79324",
+ "indices": [
+ 0,
+ 16
+ ]
+ }
+ ]
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "@aurorabyte79324 Crafting the neural pathways of tomorrow",
+ "in_reply_to_screen_name": "aurorabyte79324",
+ "in_reply_to_status_id_str": "1889721288207519894",
+ "in_reply_to_user_id_str": "1769424777998180352",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889739476622254484"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889721288207519894",
+ "1889739476622254484"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196881",
+ "sortIndex": "1890516651804196847",
+ "content": {
+ "entryType": "TimelineTimelineModule",
+ "__typename": "TimelineTimelineModule",
+ "items": [
+ {
+ "entryId": "profile-conversation-1890516651804196881-tweet-1889726300694163477",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889726300694163477",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889726300694163477"
+ ],
+ "editable_until_msecs": "1739384434000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "7",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:20:34 +0000 2025",
+ "conversation_id_str": "1889726300694163477",
+ "display_text_range": [
+ 0,
+ 41
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Mind and technology, harmoniously aligned",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 3,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889726300694163477"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196881-tweet-1889731501409046602",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889731501409046602",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889731501409046602"
+ ],
+ "editable_until_msecs": "1739385674000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 17:41:14 +0000 2025",
+ "conversation_id_str": "1889726300694163477",
+ "display_text_range": [
+ 0,
+ 46
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "The nexus of cognition and next-gen technology",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889726300694163477",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 2,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889731501409046602"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "profile-conversation-1890516651804196881-tweet-1889739424684208324",
+ "item": {
+ "itemContent": {
+ "itemType": "TimelineTweet",
+ "__typename": "TimelineTweet",
+ "tweet_results": {
+ "result": {
+ "__typename": "Tweet",
+ "rest_id": "1889739424684208324",
+ "core": {
+ "user_results": {
+ "result": {
+ "__typename": "User",
+ "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy",
+ "rest_id": "1769426369526771712",
+ "affiliates_highlighted_label": {},
+ "has_graduated_access": true,
+ "parody_commentary_fan_label": "None",
+ "is_blue_verified": false,
+ "profile_image_shape": "Circle",
+ "legacy": {
+ "following": false,
+ "can_dm": true,
+ "can_media_tag": true,
+ "created_at": "Sun Mar 17 18:12:01 +0000 2024",
+ "default_profile": true,
+ "default_profile_image": false,
+ "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights",
+ "entities": {
+ "description": {
+ "urls": []
+ }
+ },
+ "fast_followers_count": 0,
+ "favourites_count": 205,
+ "followers_count": 3,
+ "friends_count": 0,
+ "has_custom_timelines": false,
+ "is_translator": false,
+ "listed_count": 0,
+ "location": "",
+ "media_count": 2,
+ "name": "nexamind",
+ "needs_phone_verification": false,
+ "normal_followers_count": 3,
+ "pinned_tweet_ids_str": [],
+ "possibly_sensitive": false,
+ "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161",
+ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg",
+ "profile_interstitial_type": "",
+ "screen_name": "nexamind91326",
+ "statuses_count": 134,
+ "translator_type": "none",
+ "verified": false,
+ "want_retweets": false,
+ "withheld_in_countries": []
+ },
+ "tipjar_settings": {}
+ }
+ }
+ },
+ "unmention_data": {},
+ "edit_control": {
+ "edit_tweet_ids": [
+ "1889739424684208324"
+ ],
+ "editable_until_msecs": "1739387563000",
+ "is_edit_eligible": false,
+ "edits_remaining": "5"
+ },
+ "is_translatable": false,
+ "views": {
+ "count": "3",
+ "state": "EnabledWithCount"
+ },
+ "source": "Twitter Web App",
+ "grok_analysis_button": true,
+ "legacy": {
+ "bookmark_count": 0,
+ "bookmarked": false,
+ "created_at": "Wed Feb 12 18:12:43 +0000 2025",
+ "conversation_id_str": "1889726300694163477",
+ "display_text_range": [
+ 0,
+ 50
+ ],
+ "entities": {
+ "hashtags": [],
+ "symbols": [],
+ "timestamps": [],
+ "urls": [],
+ "user_mentions": []
+ },
+ "favorite_count": 0,
+ "favorited": false,
+ "full_text": "Transforming thought into transcendental solutions",
+ "in_reply_to_screen_name": "nexamind91326",
+ "in_reply_to_status_id_str": "1889731501409046602",
+ "in_reply_to_user_id_str": "1769426369526771712",
+ "is_quote_status": false,
+ "lang": "en",
+ "quote_count": 0,
+ "reply_count": 0,
+ "retweet_count": 0,
+ "retweeted": false,
+ "user_id_str": "1769426369526771712",
+ "id_str": "1889739424684208324"
+ }
+ }
+ },
+ "tweetDisplayType": "Tweet"
+ },
+ "clientEventInfo": {
+ "component": "tweet",
+ "element": "tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "conversationMetadata": {
+ "allTweetIds": [
+ "1889726300694163477",
+ "1889731501409046602",
+ "1889739424684208324"
+ ],
+ "enableDeduplication": true
+ }
+ },
+ "displayType": "VerticalConversation",
+ "clientEventInfo": {
+ "component": "suggest_ranked_organic_tweet",
+ "details": {
+ "timelinesDetails": {
+ "injectionType": "RankedOrganicTweet",
+ "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA="
+ }
+ }
+ }
+ }
+ },
+ {
+ "entryId": "cursor-top-1890516651804196865",
+ "sortIndex": "1890516651804196865",
+ "content": {
+ "entryType": "TimelineTimelineCursor",
+ "__typename": "TimelineTimelineCursor",
+ "value": "DAABCgABGjx24ODAJxEKAAIaPHRUQVdxPAgAAwAAAAEAAA",
+ "cursorType": "Top"
+ }
+ },
+ {
+ "entryId": "cursor-bottom-1890516651804196846",
+ "sortIndex": "1890516651804196846",
+ "content": {
+ "entryType": "TimelineTimelineCursor",
+ "__typename": "TimelineTimelineCursor",
+ "value": "DAABCgABGjx24OC__-wKAAIaObP-llpwxAgAAwAAAAIAAA",
+ "cursorType": "Bottom"
+ }
+ }
+ ]
+ }
+ ],
+ "metadata": {
+ "scribeConfig": {
+ "page": "profileAll"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file