Articles
Get full X Article content with cover image and metadata
Retrieve the full content of an X Article (long-form post) by numeric tweet ID. Returns article_not_found when the tweet is valid but is not an X Article.
get/x/articles/{tweetId}
Path parameters
tweetIdstring required
Numeric tweet ID of the article, 15-20 digits. If you have a tweet URL, use the final status ID.
Response
Article with author
Example response
{
"article": {
"title": "The Future of AI",
"previewText": "A deep dive into the latest AI trends...",
"coverImageUrl": "https://pbs.twimg.com/media/example.jpg",
"bodyText": "This is the first paragraph of the article.",
"contents": [
{
"type": "paragraph",
"text": "This is the first paragraph of the article.",
"url": "https://pbs.twimg.com/media/example.jpg",
"previewUrl": "https://pbs.twimg.com/media/example.jpg",
"width": 1200,
"height": 675,
"inlineStyleRanges": [
{
"length": 8,
"style": "BOLD"
}
]
}
],
"createdAt": "2025-01-15T12:00:00Z",
"likeCount": 150,
"replyCount": 23,
"quoteCount": 8,
"viewCount": 5000
},
"author": {
"id": "9876543210",
"name": "Elon Musk",
"username": "elonmusk"
}
}