X(Twitter) API - 用户已发布帖子 (V1)
获取指定 X (Twitter) 用户的公开推文时间线。
典型使用场景:
- 监控有影响力账户的最新动态。
- 收集推文用于归档或内容分析。
- 追踪特定用户生成内容的互动情况。
功能亮点:
- 支持通过游标对大型数据集进行分页处理。
请求参数
| 参数名 | 位置 | 类型 | 必填 | 说明 |
|---|---|---|---|---|
token | query | string | 是 | 访问API所需的鉴权令牌。 |
restId | query | string | 是 | X 用户的唯一数字标识符(Rest ID)。 |
cursor | query | string | 否 | 用于浏览长时线内容的分页游标。 |
代码示例
💡 环境说明
默认示例使用 https://api.justoneapi.com (prod-global)。中国大陆地区建议替换为 http://47.117.133.51:30015 (prod-cn) 以获得更好的访问体验。详见 环境选择。
bash
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
curl -X GET "https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE"text
我想使用 Just One API 提供的“用户已发布帖子 (V1)”接口。
接口地址: https://api.justoneapi.com/api/twitter/get-user-posts/v1
HTTP 方法: GET
身份验证: 在 URL 后添加查询参数“?token=您的API密钥”。
OpenAPI 定义: https://docs.justoneapi.com/openapi/xtwitter-apis/user-published-posts-v1-zh.json
请求参数说明:
- token (query): 访问API所需的鉴权令牌。 (必填)
- restId (query): X 用户的唯一数字标识符(Rest ID)。 (必填)
- cursor (query): 用于浏览长时线内容的分页游标。
返回格式: JSON
响应处理与错误码:
1. 需通过返回体中的 "code" 字段判断业务结果(code 为 0 表示成功)。
2. 超时建议:建议将请求超时时间设置为至少 60 秒。
3. 业务码说明:
- 0: 成功
- 100: Token 无效或已失效
- 301: 采集失败,请重试
- 302: 超出速率限制
- 303: 超出每日配额
- 400: 参数错误
- 500: 内部服务器错误
- 600: 权限不足
- 601: 余额不足
请帮我用我擅长的编程语言写一个脚本来调用这个接口,并处理返回结果。python
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import requests
url = "https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE"
response = requests.get(url)
print(response.json())js
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
const response = await fetch("https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE", {
method: "GET"
});
const data = await response.json();
console.log(data);java
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
public class Main {
public static void main(String[] args) throws Exception {
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}go
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
url := "https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE"
req, _ := http.NewRequest("GET", url, nil)
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}php
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.justoneapi.com/api/twitter/get-user-posts/v1?token=YOUR_API_KEY&restId=VALUE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$response = curl_exec($ch);
curl_close($ch);
echo $response;响应结果
json
{
"code": 0,
"data": {
"pinned": {
"tweet_id": "2030159267689632121",
"bookmarks": 5234,
"created_at": "Sat Mar 07 05:51:02 +0000 2026",
"favorites": 66652,
"text": "Only Grok speaks the truth. \n\nOnly truthful AI is safe. \n\nOnly truth understands the universe.",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "31035882",
"quotes": 1180,
"replies": 13574,
"retweets": 11522,
"conversation_id": "2030159267689632121",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030151922968318104",
"bookmarks": 1471,
"created_at": "Sat Mar 07 05:21:51 +0000 2026",
"favorites": 2798,
"text": "https://t.co/HAwXsH7QLA",
"lang": "zxx",
"source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>",
"views": "30637896",
"quotes": 148,
"replies": 460,
"retweets": 774,
"conversation_id": "2030151922968318104",
"author": {
"rest_id": "1485689970593468416",
"name": "The Rabbit Hole",
"screen_name": "TheRabbitHole",
"avatar": "https://pbs.twimg.com/profile_images/1522017422550528001/6AceRKJQ_normal.png",
"followers_count": 1092069,
"blue_verified": true
},
"media": []
}
},
"timeline": [
{
"tweet_id": "2030913482301083900",
"bookmarks": 974,
"created_at": "Mon Mar 09 07:48:01 +0000 2026",
"favorites": 24309,
"text": "🤔",
"lang": "art",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "12013950",
"quotes": 85,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 1833,
"retweets": 1806,
"conversation_id": "2030913482301083900",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030833126956552287",
"bookmarks": 1156,
"created_at": "Mon Mar 09 02:28:43 +0000 2026",
"favorites": 15537,
"text": "Sheep dogs are born the way they are, but pit bulls are only the way they are because of socio economic factors",
"lang": "en",
"views": "12364030",
"quotes": 59,
"replies": 392,
"retweets": 1202,
"conversation_id": "2030833126956552287",
"author": {
"rest_id": "1504181287468339208",
"name": "Will Tanner",
"screen_name": "Will_Tanner_1",
"avatar": "https://pbs.twimg.com/profile_images/1832021776936620032/is-qulMK_normal.jpg",
"followers_count": 160334,
"blue_verified": true
},
"media": []
}
},
{
"tweet_id": "2030912082737242454",
"bookmarks": 2468,
"created_at": "Mon Mar 09 07:42:27 +0000 2026",
"favorites": 77377,
"text": "😂",
"lang": "art",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "9686363",
"quotes": 142,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 2720,
"retweets": 6673,
"conversation_id": "2030912082737242454",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030858134114226180",
"bookmarks": 528,
"created_at": "Mon Mar 09 04:08:05 +0000 2026",
"favorites": 5049,
"text": "Jim Cramer in 2010: “I’m not sure Tesla has a business plan that’s going to work, it’s not a smart investment”\n\nInverse Cramer is so real https://t.co/dFRUzFczsb",
"lang": "en",
"views": "9864390",
"quotes": 76,
"replies": 215,
"retweets": 528,
"conversation_id": "2030858134114226180",
"author": {
"rest_id": "1494873435863977985",
"name": "Nic Cruz Patane",
"screen_name": "niccruzpatane",
"avatar": "https://pbs.twimg.com/profile_images/1805666868071391232/1qAqAOng_normal.jpg",
"followers_count": 96032,
"blue_verified": true
},
"media": {
"video": [
{
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2030858080695484416/img/Qqe1bT7MS-Z6i82u.jpg",
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/2030858080695484416/pl/Lw5xNRbef5eCwaIh.m3u8?tag=21&v=f26"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030858080695484416/vid/avc1/490x270/oy78v8jjoEXiXba7.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030858080695484416/vid/avc1/652x360/Jb_Vw4m-rPmGP0zT.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030858080695484416/vid/avc1/1046x576/QFUADFpMHezWsi0B.mp4?tag=21"
}
],
"aspect_ratio": [
523,
288
],
"duration": 34433,
"original_info": {
"focus_rects": [],
"height": 576,
"width": 1046
},
"id": "2030858080695484416"
}
]
}
}
},
{
"tweet_id": "2030911800984891796",
"bookmarks": 0,
"created_at": "Mon Mar 09 07:41:20 +0000 2026",
"favorites": 0,
"text": "RT @Literariium: “The more laws, the less justice.”\n\n— Cicero https://t.co/hxnCa2vZWQ",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "207",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1593532226922512386",
"name": "✒️",
"screen_name": "Literariium"
}
]
},
"replies": 0,
"retweets": 2267,
"conversation_id": "2030911800984891796",
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC4f4uGagAA0jVE.jpg",
"id": "2030595541298741248",
"sizes": {
"h": 675,
"w": 1200
}
}
]
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030595544406770152"
},
"retweeted_tweet": {
"tweet_id": "2030595544406770152",
"bookmarks": 891,
"created_at": "Sun Mar 08 10:44:39 +0000 2026",
"favorites": 15753,
"text": "“The more laws, the less justice.”\n\n— Cicero https://t.co/hxnCa2vZWQ",
"lang": "en",
"views": "581343",
"quotes": 86,
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/hxnCa2vZWQ",
"expanded_url": "https://x.com/Literariium/status/2030595544406770152/photo/1",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"h": 260,
"w": 260,
"x": 405,
"y": 71
}
]
},
"medium": {
"faces": [
{
"h": 246,
"w": 246,
"x": 383,
"y": 67
}
]
},
"orig": {
"faces": [
{
"h": 260,
"w": 260,
"x": 405,
"y": 71
}
]
},
"small": {
"faces": [
{
"h": 139,
"w": 139,
"x": 217,
"y": 38
}
]
}
},
"id_str": "2030595541298741248",
"indices": [
45,
68
],
"media_key": "3_2030595541298741248",
"media_results": {
"result": {
"media_key": "3_2030595541298741248"
}
},
"media_url_https": "https://pbs.twimg.com/media/HC4f4uGagAA0jVE.jpg",
"original_info": {
"focus_rects": [
{
"h": 709,
"w": 1266,
"x": 0,
"y": 0
},
{
"h": 712,
"w": 712,
"x": 181,
"y": 0
},
{
"h": 712,
"w": 625,
"x": 225,
"y": 0
},
{
"h": 712,
"w": 356,
"x": 359,
"y": 0
},
{
"h": 712,
"w": 1266,
"x": 0,
"y": 0
}
],
"height": 712,
"width": 1266
},
"sizes": {
"large": {
"h": 712,
"resize": "fit",
"w": 1266
},
"medium": {
"h": 675,
"resize": "fit",
"w": 1200
},
"small": {
"h": 382,
"resize": "fit",
"w": 680
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "photo",
"url": "https://t.co/hxnCa2vZWQ"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 299,
"retweets": 2267,
"conversation_id": "2030595544406770152",
"author": {
"rest_id": "1593532226922512386",
"name": "✒️",
"screen_name": "Literariium",
"avatar": "https://pbs.twimg.com/profile_images/1961803509122379778/c_Aimo0E_normal.jpg",
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC4f4uGagAA0jVE.jpg",
"id": "2030595541298741248",
"sizes": {
"h": 675,
"w": 1200
}
}
]
}
}
},
{
"tweet_id": "2030910832213991919",
"bookmarks": 0,
"created_at": "Mon Mar 09 07:37:29 +0000 2026",
"favorites": 0,
"text": "RT @nikitabier: Just dragged all my tax documents into Grok and said figure it out. Don't have the time for this bullshit anymore.",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "100",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "636513296",
"name": "Nikita Bier",
"screen_name": "nikitabier"
}
]
},
"replies": 0,
"retweets": 498,
"conversation_id": "2030910832213991919",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030886287259910176"
},
"retweeted_tweet": {
"tweet_id": "2030886287259910176",
"bookmarks": 433,
"created_at": "Mon Mar 09 05:59:57 +0000 2026",
"favorites": 10672,
"text": "Just dragged all my tax documents into Grok and said figure it out. Don't have the time for this bullshit anymore.",
"lang": "en",
"views": "1063714",
"quotes": 91,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 1246,
"retweets": 498,
"conversation_id": "2030886287259910176",
"author": {
"rest_id": "636513296",
"name": "Nikita Bier",
"screen_name": "nikitabier",
"avatar": "https://pbs.twimg.com/profile_images/1755448801957945344/Fh2HNw5Y_normal.jpg",
"blue_verified": true
},
"media": []
}
},
{
"tweet_id": "2030861395060043957",
"bookmarks": 4730,
"created_at": "Mon Mar 09 04:21:02 +0000 2026",
"favorites": 27731,
"text": "https://t.co/zluYQYC3rq",
"lang": "zxx",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "7358257",
"quotes": 215,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 3647,
"retweets": 3922,
"conversation_id": "2030861395060043957",
"media": {
"video": [
{
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2030857868988280832/img/-F8p_jZuKcpS6msN.jpg",
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/2030857868988280832/pl/0GH6bZ0f6ujNGhAY.m3u8?tag=24&v=cfc"
},
{
"bitrate": 800000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030857868988280832/vid/avc1/320x476/9spyZ5wAHU4CFeMg.mp4?tag=24"
},
{
"bitrate": 5184000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030857868988280832/vid/avc1/480x714/t-4obw8UPo0e3l7f.mp4?tag=24"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030857868988280832/vid/avc1/720x1072/2UQumu3-w-WzQVBR.mp4?tag=24"
}
],
"aspect_ratio": [
49,
73
],
"duration": 10041,
"original_info": {
"focus_rects": [],
"height": 1168,
"width": 784
},
"id": "2030857868988280832"
}
]
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030856535317053685",
"bookmarks": 1957,
"created_at": "Mon Mar 09 04:01:44 +0000 2026",
"favorites": 101664,
"text": "💯😂",
"lang": "art",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "10814241",
"quotes": 129,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 1817,
"retweets": 10061,
"conversation_id": "2030856535317053685",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030852491743724009",
"bookmarks": 152,
"created_at": "Mon Mar 09 03:45:40 +0000 2026",
"favorites": 4886,
"text": "Incentives explain behaviors https://t.co/7tp57ClVOb",
"lang": "en",
"views": "10849909",
"quotes": 68,
"replies": 163,
"retweets": 712,
"conversation_id": "2030852491743724009",
"author": {
"rest_id": "1485689970593468416",
"name": "The Rabbit Hole",
"screen_name": "TheRabbitHole",
"avatar": "https://pbs.twimg.com/profile_images/1522017422550528001/6AceRKJQ_normal.png",
"followers_count": 1092069,
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC8Jk_ZbQAAH_Qj.jpg",
"id": "2030852488065400832",
"sizes": {
"h": 832,
"w": 1200
}
}
]
}
}
},
{
"tweet_id": "2030856275505094711",
"bookmarks": 9991,
"created_at": "Mon Mar 09 04:00:42 +0000 2026",
"favorites": 113799,
"text": "I use this analogy a lot. \n\nThis is what a room full of computers looked like in old times: https://t.co/Y4a93z76lw",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "16528669",
"quotes": 301,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 3041,
"retweets": 9131,
"conversation_id": "2030856275505094711",
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC8NBUhaAAAJIiq.jpg",
"id": "2030856273307238400",
"sizes": {
"h": 465,
"w": 600
}
}
]
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030850967059714473",
"bookmarks": 2720,
"created_at": "Mon Mar 09 03:39:36 +0000 2026",
"favorites": 20027,
"text": "A “computer” used to be a job title. \n\nThen a computer became a thing humans used. \n\nNow a computer is becoming a thing computers use.",
"lang": "en",
"views": "17201714",
"quotes": 241,
"replies": 975,
"retweets": 1864,
"conversation_id": "2030850967059714473",
"author": {
"rest_id": "745273",
"name": "Naval",
"screen_name": "naval",
"avatar": "https://pbs.twimg.com/profile_images/1256841238298292232/ycqwaMI2_normal.jpg",
"followers_count": 3077540,
"blue_verified": true
},
"media": []
}
},
{
"tweet_id": "2030855339747463173",
"bookmarks": 0,
"created_at": "Mon Mar 09 03:56:59 +0000 2026",
"favorites": 0,
"text": "RT @alx: Trump says he will not sign another bill until the SAVE America Act is passed and is not going to stop talking about it. This shou…",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "77",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "534023",
"name": "ALX 🇺🇸",
"screen_name": "alx"
}
]
},
"replies": 0,
"retweets": 1456,
"conversation_id": "2030855339747463173",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030851272694243556"
},
"retweeted_tweet": {
"tweet_id": "2030851272694243556",
"bookmarks": 162,
"created_at": "Mon Mar 09 03:40:49 +0000 2026",
"favorites": 6859,
"text": "Trump says he will not sign another bill until the SAVE America Act is passed and is not going to stop talking about it. This should be the Senate’s sole focus.\n\nGet this done or you will be betraying your voters.\n\nWhere do you stand on the talking filibuster?\n\n-@LeaderJohnThune \n-@lisamurkowski \n-@SenJohnCurtis \n-@SenKevinCramer \n-@SenThomTillis",
"lang": "en",
"views": "606562",
"quotes": 52,
"entities": {
"hashtags": [],
"media": [
{
"allow_download_status": {
"allow_download": true
},
"display_url": "pic.x.com/vhxKDjdFuS",
"expanded_url": "https://x.com/alx/status/2030851272694243556/photo/1",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": [
{
"h": 166,
"w": 166,
"x": 8,
"y": 404
},
{
"h": 222,
"w": 222,
"x": 968,
"y": 122
}
]
},
"medium": {
"faces": [
{
"h": 97,
"w": 97,
"x": 4,
"y": 236
},
{
"h": 130,
"w": 130,
"x": 567,
"y": 71
}
]
},
"orig": {
"faces": [
{
"h": 332,
"w": 332,
"x": 16,
"y": 808
},
{
"h": 444,
"w": 444,
"x": 1936,
"y": 244
}
]
},
"small": {
"faces": [
{
"h": 55,
"w": 55,
"x": 2,
"y": 134
},
{
"h": 73,
"w": 73,
"x": 321,
"y": 40
}
]
}
},
"id_str": "2030851262686642176",
"indices": [
280,
303
],
"media_key": "3_2030851262686642176",
"media_results": {
"result": {
"media_key": "3_2030851262686642176"
}
},
"media_url_https": "https://pbs.twimg.com/media/HC8IdqgXQAAiwxc.jpg",
"original_info": {
"focus_rects": [
{
"h": 2294,
"w": 4096,
"x": 0,
"y": 0
},
{
"h": 2730,
"w": 2730,
"x": 1195,
"y": 0
},
{
"h": 2730,
"w": 2395,
"x": 1363,
"y": 0
},
{
"h": 2730,
"w": 1365,
"x": 1878,
"y": 0
},
{
"h": 2730,
"w": 4096,
"x": 0,
"y": 0
}
],
"height": 2730,
"width": 4096
},
"sizes": {
"large": {
"h": 1365,
"resize": "fit",
"w": 2048
},
"medium": {
"h": 800,
"resize": "fit",
"w": 1200
},
"small": {
"h": 453,
"resize": "fit",
"w": 680
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "photo",
"url": "https://t.co/vhxKDjdFuS"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "296361085",
"indices": [
263,
279
],
"name": "Leader John Thune",
"screen_name": "LeaderJohnThune"
}
]
},
"replies": 501,
"retweets": 1456,
"conversation_id": "2030851272694243556",
"author": {
"rest_id": "534023",
"name": "ALX 🇺🇸",
"screen_name": "alx",
"avatar": "https://pbs.twimg.com/profile_images/2027958323618684929/fNYjZWfB_normal.jpg",
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC8IdqgXQAAiwxc.jpg",
"id": "2030851262686642176",
"sizes": {
"h": 800,
"w": 1200
}
}
]
}
}
},
{
"tweet_id": "2030855200198758826",
"bookmarks": 0,
"created_at": "Mon Mar 09 03:56:25 +0000 2026",
"favorites": 0,
"text": "RT @lyn_beatz: Grok Imagine 🥜 https://t.co/QO6wsD3Pvw",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "155",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1708559437005279232",
"name": "𝐋.𝐘.𝐍",
"screen_name": "lyn_beatz"
}
]
},
"replies": 0,
"retweets": 256,
"conversation_id": "2030855200198758826",
"media": {
"video": [
{
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2030702026254917632/pu/img/LZb9hbWlTo81iUZY.jpg",
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/pl/M9kLsMfCWyvTvM0y.m3u8?tag=22"
},
{
"bitrate": 800000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/320x474/9Yp9yvg6WvvLzQKL.mp4?tag=22"
},
{
"bitrate": 5184000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/464x688/DZWwZBoRWZ-4BdQg.mp4?tag=22"
}
],
"aspect_ratio": [
29,
43
],
"duration": 16000,
"original_info": {
"focus_rects": [],
"height": 688,
"width": 464
},
"id": "2030702026254917632"
}
]
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030702049659138469"
},
"retweeted_tweet": {
"tweet_id": "2030702049659138469",
"bookmarks": 74,
"created_at": "Sun Mar 08 17:47:51 +0000 2026",
"favorites": 1279,
"text": "Grok Imagine 🥜 https://t.co/QO6wsD3Pvw",
"lang": "en",
"views": "507336",
"quotes": 17,
"entities": {
"hashtags": [],
"media": [
{
"additional_media_info": {
"monetizable": false
},
"display_url": "pic.x.com/QO6wsD3Pvw",
"expanded_url": "https://x.com/lyn_beatz/status/2030702049659138469/video/1",
"ext_media_availability": {
"status": "Available"
},
"grok_post_id": "d9a37f6b-d57e-4e2c-b485-de72e7ee6566",
"id_str": "2030702026254917632",
"indices": [
15,
38
],
"media_key": "7_2030702026254917632",
"media_results": {
"result": {
"media_key": "7_2030702026254917632"
}
},
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2030702026254917632/pu/img/LZb9hbWlTo81iUZY.jpg",
"original_info": {
"focus_rects": [],
"height": 688,
"width": 464
},
"sizes": {
"large": {
"h": 688,
"resize": "fit",
"w": 464
},
"medium": {
"h": 688,
"resize": "fit",
"w": 464
},
"small": {
"h": 680,
"resize": "fit",
"w": 459
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "video",
"url": "https://t.co/QO6wsD3Pvw",
"video_info": {
"aspect_ratio": [
29,
43
],
"duration_millis": 16000,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/pl/M9kLsMfCWyvTvM0y.m3u8?tag=22"
},
{
"bitrate": 800000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/320x474/9Yp9yvg6WvvLzQKL.mp4?tag=22"
},
{
"bitrate": 5184000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/464x688/DZWwZBoRWZ-4BdQg.mp4?tag=22"
}
]
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 172,
"retweets": 256,
"conversation_id": "2030702049659138469",
"author": {
"rest_id": "1708559437005279232",
"name": "𝐋.𝐘.𝐍",
"screen_name": "lyn_beatz",
"avatar": "https://pbs.twimg.com/profile_images/2006863132514295808/rJHuE6gm_normal.jpg",
"blue_verified": true
},
"media": {
"video": [
{
"media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/2030702026254917632/pu/img/LZb9hbWlTo81iUZY.jpg",
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/pl/M9kLsMfCWyvTvM0y.m3u8?tag=22"
},
{
"bitrate": 800000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/320x474/9Yp9yvg6WvvLzQKL.mp4?tag=22"
},
{
"bitrate": 5184000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/ext_tw_video/2030702026254917632/pu/vid/avc1/464x688/DZWwZBoRWZ-4BdQg.mp4?tag=22"
}
],
"aspect_ratio": [
29,
43
],
"duration": 16000,
"original_info": {
"focus_rects": [],
"height": 688,
"width": 464
},
"id": "2030702026254917632"
}
]
}
}
},
{
"tweet_id": "2030852017988739479",
"bookmarks": 0,
"created_at": "Mon Mar 09 03:43:47 +0000 2026",
"favorites": 0,
"text": "RT @SawyerMerritt: One year ago today, I took delivery of my Launch Series Model Y at Giga Texas.\n\nBest car I've ever owned. It can drive i…",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "76",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "243013409",
"name": "Sawyer Merritt",
"screen_name": "SawyerMerritt"
}
]
},
"replies": 0,
"retweets": 484,
"conversation_id": "2030852017988739479",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030849857347293689"
},
"retweeted_tweet": {
"tweet_id": "2030849857347293689",
"bookmarks": 107,
"created_at": "Mon Mar 09 03:35:12 +0000 2026",
"favorites": 3897,
"text": "One year ago today, I took delivery of my Launch Series Model Y at Giga Texas.\n\nBest car I've ever owned. It can drive itself anywhere I need to go, is constantly improving, I never need to do any oil changes (I always hated those), and costs me just $18 to fully charge. https://t.co/8PAADq4SKi",
"lang": "en",
"views": "555426",
"quotes": 20,
"entities": {
"hashtags": [],
"media": [
{
"additional_media_info": {
"monetizable": false
},
"display_url": "pic.x.com/8PAADq4SKi",
"expanded_url": "https://x.com/SawyerMerritt/status/2030849857347293689/video/1",
"ext_media_availability": {
"status": "Available"
},
"id_str": "2030847613659164672",
"indices": [
272,
295
],
"media_key": "13_2030847613659164672",
"media_results": {
"result": {
"media_key": "13_2030847613659164672"
}
},
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2030847613659164672/img/fBfkiaRStkmdAYMW.jpg",
"original_info": {
"focus_rects": [],
"height": 2160,
"width": 3840
},
"sizes": {
"large": {
"h": 1152,
"resize": "fit",
"w": 2048
},
"medium": {
"h": 675,
"resize": "fit",
"w": 1200
},
"small": {
"h": 383,
"resize": "fit",
"w": 680
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "video",
"url": "https://t.co/8PAADq4SKi",
"video_info": {
"aspect_ratio": [
16,
9
],
"duration_millis": 46005,
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/pl/pXSYKgS9x36DoJ6A.m3u8?tag=21&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/480x270/W90ojgIUZi3TG5fB.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/640x360/LFEfZJmDORX8FriW.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/1280x720/6ItK4ggJf7Roqp-5.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/1920x1080/VSOgyAkossCogIvh.mp4?tag=21"
},
{
"bitrate": 25128000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/3840x2160/YR-vCzDHCFDPfsh7.mp4?tag=21"
}
]
}
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 347,
"retweets": 484,
"conversation_id": "2030849857347293689",
"author": {
"rest_id": "243013409",
"name": "Sawyer Merritt",
"screen_name": "SawyerMerritt",
"avatar": "https://pbs.twimg.com/profile_images/1837744842715082752/xH9vYixL_normal.jpg",
"blue_verified": true
},
"media": {
"video": [
{
"media_url_https": "https://pbs.twimg.com/amplify_video_thumb/2030847613659164672/img/fBfkiaRStkmdAYMW.jpg",
"variants": [
{
"content_type": "application/x-mpegURL",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/pl/pXSYKgS9x36DoJ6A.m3u8?tag=21&v=cfc"
},
{
"bitrate": 256000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/480x270/W90ojgIUZi3TG5fB.mp4?tag=21"
},
{
"bitrate": 832000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/640x360/LFEfZJmDORX8FriW.mp4?tag=21"
},
{
"bitrate": 2176000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/1280x720/6ItK4ggJf7Roqp-5.mp4?tag=21"
},
{
"bitrate": 10368000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/1920x1080/VSOgyAkossCogIvh.mp4?tag=21"
},
{
"bitrate": 25128000,
"content_type": "video/mp4",
"url": "https://video.twimg.com/amplify_video/2030847613659164672/vid/avc1/3840x2160/YR-vCzDHCFDPfsh7.mp4?tag=21"
}
],
"aspect_ratio": [
16,
9
],
"duration": 46005,
"original_info": {
"focus_rects": [],
"height": 2160,
"width": 3840
},
"id": "2030847613659164672"
}
]
}
}
},
{
"tweet_id": "2030851099021005036",
"bookmarks": 0,
"created_at": "Mon Mar 09 03:40:08 +0000 2026",
"favorites": 0,
"text": "RT @cybertruck: Desert monolith https://t.co/xmiqHmceiw",
"lang": "cy",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "124",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1686044379910131718",
"name": "Cybertruck",
"screen_name": "cybertruck"
}
]
},
"replies": 0,
"retweets": 571,
"conversation_id": "2030851099021005036",
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC8GRzvagAAeh6j.jpg",
"id": "2030848859984003072",
"sizes": {
"h": 1200,
"w": 900
}
}
]
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030848864757088355"
},
"retweeted_tweet": {
"tweet_id": "2030848864757088355",
"bookmarks": 100,
"created_at": "Mon Mar 09 03:31:15 +0000 2026",
"favorites": 3948,
"text": "Desert monolith https://t.co/xmiqHmceiw",
"lang": "cy",
"views": "513123",
"quotes": 28,
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/xmiqHmceiw",
"expanded_url": "https://x.com/cybertruck/status/2030848864757088355/photo/1",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"orig": {
"faces": []
},
"small": {
"faces": []
}
},
"id_str": "2030848859984003072",
"indices": [
16,
39
],
"media_key": "3_2030848859984003072",
"media_results": {
"result": {
"media_key": "3_2030848859984003072"
}
},
"media_url_https": "https://pbs.twimg.com/media/HC8GRzvagAAeh6j.jpg",
"original_info": {
"focus_rects": [
{
"h": 860,
"w": 1536,
"x": 0,
"y": 952
},
{
"h": 1536,
"w": 1536,
"x": 0,
"y": 512
},
{
"h": 1751,
"w": 1536,
"x": 0,
"y": 297
},
{
"h": 2048,
"w": 1024,
"x": 256,
"y": 0
},
{
"h": 2048,
"w": 1536,
"x": 0,
"y": 0
}
],
"height": 2048,
"width": 1536
},
"sizes": {
"large": {
"h": 2048,
"resize": "fit",
"w": 1536
},
"medium": {
"h": 1200,
"resize": "fit",
"w": 900
},
"small": {
"h": 680,
"resize": "fit",
"w": 510
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "photo",
"url": "https://t.co/xmiqHmceiw"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 324,
"retweets": 571,
"conversation_id": "2030848864757088355",
"author": {
"rest_id": "1686044379910131718",
"name": "Cybertruck",
"screen_name": "cybertruck",
"avatar": "https://pbs.twimg.com/profile_images/1729225579277209600/DNnvovEG_normal.jpg",
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC8GRzvagAAeh6j.jpg",
"id": "2030848859984003072",
"sizes": {
"h": 1200,
"w": 900
}
}
]
}
}
},
{
"tweet_id": "2030844709061709837",
"bookmarks": 773,
"created_at": "Mon Mar 09 03:14:44 +0000 2026",
"favorites": 12789,
"text": "Grok 4.20 is hilarious 🤣 https://t.co/jzXJspkgsE",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "17959458",
"quotes": 109,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "grok.com/share/bGVnYWN5…",
"expanded_url": "https://grok.com/share/bGVnYWN5_e9e957bf-d289-4988-acf5-a4ab7eef2357",
"url": "https://t.co/jzXJspkgsE"
}
],
"user_mentions": []
},
"replies": 1705,
"retweets": 1143,
"conversation_id": "2030844709061709837",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030843724096504011",
"bookmarks": 0,
"created_at": "Mon Mar 09 03:10:49 +0000 2026",
"favorites": 0,
"text": "RT @testerlabor: I will never hide the thinking trace from Grok and its agents. Watching them thinking and discuss is pure entertainment fo…",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "66",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "1769074421438803968",
"name": "Testlabor",
"screen_name": "testerlabor"
}
]
},
"replies": 0,
"retweets": 262,
"conversation_id": "2030843724096504011",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030672164626612234"
},
"retweeted_tweet": {
"tweet_id": "2030672164626612234",
"bookmarks": 103,
"created_at": "Sun Mar 08 15:49:06 +0000 2026",
"favorites": 1635,
"text": "I will never hide the thinking trace from Grok and its agents. Watching them thinking and discuss is pure entertainment for me. https://t.co/0a5QKDZQ6x",
"lang": "en",
"views": "539726",
"quotes": 15,
"entities": {
"hashtags": [],
"media": [
{
"display_url": "pic.x.com/0a5QKDZQ6x",
"expanded_url": "https://x.com/testerlabor/status/2030672164626612234/photo/1",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"orig": {
"faces": []
},
"small": {
"faces": []
}
},
"id_str": "2030672115717042176",
"indices": [
128,
151
],
"media_key": "3_2030672115717042176",
"media_results": {
"result": {
"media_key": "3_2030672115717042176"
}
},
"media_url_https": "https://pbs.twimg.com/media/HC5lh8Ca8AArry2.png",
"original_info": {
"focus_rects": [
{
"h": 329,
"w": 588,
"x": 0,
"y": 56
},
{
"h": 576,
"w": 576,
"x": 0,
"y": 0
},
{
"h": 576,
"w": 505,
"x": 0,
"y": 0
},
{
"h": 576,
"w": 288,
"x": 17,
"y": 0
},
{
"h": 576,
"w": 588,
"x": 0,
"y": 0
}
],
"height": 576,
"width": 588
},
"sizes": {
"large": {
"h": 576,
"resize": "fit",
"w": 588
},
"medium": {
"h": 576,
"resize": "fit",
"w": 588
},
"small": {
"h": 576,
"resize": "fit",
"w": 588
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "photo",
"url": "https://t.co/0a5QKDZQ6x"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 149,
"retweets": 262,
"conversation_id": "2030672164626612234",
"author": {
"rest_id": "1769074421438803968",
"name": "Testlabor",
"screen_name": "testerlabor",
"avatar": "https://pbs.twimg.com/profile_images/1817201895846363136/cm5yWp7l_normal.jpg",
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC5lh8Ca8AArry2.png",
"id": "2030672115717042176",
"sizes": {
"h": 576,
"w": 588
}
}
]
}
}
},
{
"tweet_id": "2030840522642952619",
"bookmarks": 0,
"created_at": "Mon Mar 09 02:58:06 +0000 2026",
"favorites": 0,
"text": "RT @alx: Twitter 1.0 under Bret Taylor.\n\nWill OpenAI ban sitting presidents from their services if they hurt their feelings? https://t.co/b…",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "156",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "x.com/bhaggs",
"expanded_url": "https://x.com/bhaggs",
"url": "https://t.co/b"
}
],
"user_mentions": [
{
"id_str": "534023",
"name": "ALX 🇺🇸",
"screen_name": "alx"
}
]
},
"replies": 0,
"retweets": 626,
"conversation_id": "2030840522642952619",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030817531758338125"
},
"retweeted_tweet": {
"tweet_id": "2030817531758338125",
"bookmarks": 179,
"created_at": "Mon Mar 09 01:26:44 +0000 2026",
"favorites": 4006,
"text": "Twitter 1.0 under Bret Taylor.\n\nWill OpenAI ban sitting presidents from their services if they hurt their feelings? https://t.co/bbSGxqNPEG",
"lang": "en",
"views": "1122238",
"quotes": 21,
"entities": {
"hashtags": [],
"media": [
{
"allow_download_status": {
"allow_download": true
},
"display_url": "pic.x.com/bbSGxqNPEG",
"expanded_url": "https://x.com/alx/status/2030817531758338125/photo/1",
"ext_media_availability": {
"status": "Available"
},
"features": {
"large": {
"faces": []
},
"medium": {
"faces": []
},
"orig": {
"faces": []
},
"small": {
"faces": []
}
},
"id_str": "2030817528545755136",
"indices": [
116,
139
],
"media_key": "3_2030817528545755136",
"media_results": {
"result": {
"media_key": "3_2030817528545755136"
}
},
"media_url_https": "https://pbs.twimg.com/media/HC7pyFCbQAAUjPG.jpg",
"original_info": {
"focus_rects": [
{
"h": 675,
"w": 1206,
"x": 0,
"y": 420
},
{
"h": 1095,
"w": 1095,
"x": 111,
"y": 0
},
{
"h": 1095,
"w": 961,
"x": 212,
"y": 0
},
{
"h": 1095,
"w": 548,
"x": 418,
"y": 0
},
{
"h": 1095,
"w": 1206,
"x": 0,
"y": 0
}
],
"height": 1095,
"width": 1206
},
"sizes": {
"large": {
"h": 1095,
"resize": "fit",
"w": 1206
},
"medium": {
"h": 1090,
"resize": "fit",
"w": 1200
},
"small": {
"h": 617,
"resize": "fit",
"w": 680
},
"thumb": {
"h": 150,
"resize": "crop",
"w": 150
}
},
"type": "photo",
"url": "https://t.co/bbSGxqNPEG"
}
],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 199,
"retweets": 626,
"conversation_id": "2030817531758338125",
"quoted": {
"tweet_id": "2030747211810709699",
"bookmarks": 8162,
"created_at": "Sun Mar 08 20:47:19 +0000 2026",
"favorites": 101768,
"text": "The lunatic left that took over Twitter was Wormtongue to the World.\n\nFiring @Jack was the final straw. He was the last bulwark.\n\nNow Bret Taylor is chair of @OpenAI …",
"lang": "en",
"views": "14770570",
"quotes": 393,
"replies": 3275,
"retweets": 15477,
"conversation_id": "2030747211810709699",
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"media": []
},
"author": {
"rest_id": "534023",
"name": "ALX 🇺🇸",
"screen_name": "alx",
"avatar": "https://pbs.twimg.com/profile_images/2027958323618684929/fNYjZWfB_normal.jpg",
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC7pyFCbQAAUjPG.jpg",
"id": "2030817528545755136",
"sizes": {
"h": 1090,
"w": 1200
}
}
]
}
}
},
{
"tweet_id": "2030838811794833670",
"bookmarks": 1691,
"created_at": "Mon Mar 09 02:51:18 +0000 2026",
"favorites": 21205,
"text": "Have you ever bought anything based on an ad on this platform?",
"lang": "en",
"views": "27468906",
"quotes": 1107,
"replies": 11463,
"retweets": 3321,
"conversation_id": "2030838811794833670",
"media": [],
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030839639205118155",
"bookmarks": 120,
"created_at": "Mon Mar 09 02:54:35 +0000 2026",
"favorites": 10938,
"text": "https://t.co/FmoCBmoAlg",
"lang": "zxx",
"views": "729858",
"quotes": 38,
"replies": 500,
"retweets": 544,
"conversation_id": "2030838811794833670",
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC7941ta4AAhOy_.jpg",
"id": "2030839634922758144"
}
]
},
"reply_to": "2030838811794833670",
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030839888048992623",
"bookmarks": 87,
"created_at": "Mon Mar 09 02:55:35 +0000 2026",
"favorites": 8786,
"text": "One day 🥹",
"lang": "en",
"views": "577138",
"quotes": 22,
"replies": 827,
"retweets": 371,
"conversation_id": "2030838811794833670",
"media": [],
"reply_to": "2030839639205118155",
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030839547580584245",
"bookmarks": 107,
"created_at": "Mon Mar 09 02:54:13 +0000 2026",
"favorites": 7443,
"text": "Sigh 😢",
"lang": "en",
"views": "537218",
"quotes": 56,
"replies": 1637,
"retweets": 326,
"conversation_id": "2030838811794833670",
"media": [],
"reply_to": "2030838811794833670",
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
}
},
{
"tweet_id": "2030839409600500005",
"bookmarks": 2586,
"created_at": "Mon Mar 09 02:53:41 +0000 2026",
"favorites": 74891,
"text": "🤨",
"lang": "art",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "4923117",
"quotes": 89,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": []
},
"replies": 1599,
"retweets": 7790,
"conversation_id": "2030839409600500005",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"quoted": {
"tweet_id": "2030836446094115138",
"bookmarks": 250,
"created_at": "Mon Mar 09 02:41:54 +0000 2026",
"favorites": 4285,
"text": "Yet, guess which one is under EU and Canadian investigations? https://t.co/E1yCOroLUW",
"lang": "en",
"views": "5225974",
"quotes": 84,
"replies": 228,
"retweets": 628,
"conversation_id": "2030836446094115138",
"author": {
"rest_id": "1518557272854523904",
"name": "Skscartoon",
"screen_name": "skscartoon",
"avatar": "https://pbs.twimg.com/profile_images/1960517073978974211/atpJ9Nr4_normal.jpg",
"followers_count": 136284,
"blue_verified": true
},
"media": {
"photo": [
{
"media_url_https": "https://pbs.twimg.com/media/HC76-Y8bgAEYPRX.jpg",
"id": "2030836431745417217",
"sizes": {
"h": 1200,
"w": 848
}
}
]
}
}
},
{
"tweet_id": "2030837291086745796",
"bookmarks": 0,
"created_at": "Mon Mar 09 02:45:15 +0000 2026",
"favorites": 0,
"text": "RT @elonmusk: @teslaownersSV Getting drilled 😂\n\nWhen AI can make original videos like this, we will have reached AGI 🚀 \n\nhttps://t.co/QIgqM…",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
"views": "49",
"quotes": 0,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "t.co/QIgqM",
"url": "https://t.co/QIgqM"
}
],
"user_mentions": [
{
"id_str": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk"
},
{
"id_str": "1016059981907386368",
"name": "Tesla Owners Silicon Valley",
"screen_name": "teslaownersSV"
}
]
},
"replies": 0,
"retweets": 366,
"conversation_id": "2030837291086745796",
"media": [],
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"followers_count": 236238553,
"blue_verified": true
},
"retweeted": {
"id": "2030837169388962033"
},
"retweeted_tweet": {
"tweet_id": "2030837169388962033",
"bookmarks": 164,
"created_at": "Mon Mar 09 02:44:46 +0000 2026",
"favorites": 1719,
"text": "@teslaownersSV Getting drilled 😂\n\nWhen AI can make original videos like this, we will have reached AGI 🚀 \n\nhttps://t.co/QIgqMq6YzD",
"lang": "en",
"views": "904611",
"quotes": 35,
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [
{
"display_url": "m.youtube.com/watch?v=a0fkNd…",
"expanded_url": "https://m.youtube.com/watch?v=a0fkNdPiIL4",
"indices": [
107,
130
],
"url": "https://t.co/QIgqMq6YzD"
}
],
"user_mentions": [
{
"id_str": "1016059981907386368",
"indices": [
0,
14
],
"name": "Tesla Owners Silicon Valley",
"screen_name": "teslaownersSV"
}
]
},
"replies": 463,
"retweets": 366,
"conversation_id": "2030828832694075735",
"author": {
"rest_id": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"blue_verified": true
},
"media": []
}
}
],
"next_cursor": "DAAHCgABHC-WM4o__-wLAAIAAAATMjAzMDgzNzI5MTA4Njc0NTc5NggAAwAAAAIAAA",
"prev_cursor": "DAAHCgABHC-WM4pAJxELAAIAAAATMjAzMDkxMzQ4MjMwMTA4MzkwMAgAAwAAAAEAAA",
"status": "ok",
"user": {
"profile": "elonmusk",
"id": "44196397",
"created_at": "Tue Jun 02 20:12:29 +0000 2009",
"avatar": "https://pbs.twimg.com/profile_images/2008546467615580160/57KcqsTA_normal.jpg",
"blue_verified": true,
"affiliates": {
"label": {
"badge": {
"url": "https://pbs.twimg.com/profile_images/1955359038532653056/OSHY3ewP_bigger.jpg"
},
"description": "X",
"url": {
"url": "https://twitter.com/X",
"urlType": "DeepLink"
},
"userLabelDisplayType": "Badge",
"userLabelType": "BusinessLabel"
}
},
"header_image": "https://pbs.twimg.com/profile_banners/44196397/1739948056",
"desc": "",
"name": "Elon Musk",
"protected": false,
"location": "",
"friends": 1292,
"sub_count": 236238553,
"statuses_count": 98749,
"media_count": 4387
}
}
}💡 提示:为简化展示,列表类数据样例仅保留 1-2 条记录,实际返回条数以接口响应为准。
