xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / Tweet / Get article

Get article

GET/twitter/article5 credits

Return the full content of a long-form X article. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

tweet_id
stringrequired
The numeric ID of the article tweet.

Response fields

articleobject
The X article: title, author, content blocks and engagement.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
article.titlestring
Article title.
article.preview_textstring
Short preview text.
article.cover_media_img_urlstring
Cover image URL.
Request
curl https://v2.xapis.dev/twitter/article \
  -G --data-urlencode "tweet_id=1905545699552375179" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "article": {
    "id": "QXJ0aWNsZUVudGl0eToxOTA1NTQxMTM5MTQ0Mjk4NDk4",
    "author": {
      "type": "user",
      "userName": "Decentralisedco",
      "url": "https://x.com/Decentralisedco",
      "twitterUrl": "https://twitter.com/Decentralisedco",
      "id": "1764631141926002689",
      "name": "DCo",
      "isVerified": false,
      "isBlueVerified": false,
      "verifiedType": "Business",
      "profilePicture": "https://pbs.twimg.com/profile_images/1766132688316973056/LB-8W7_d_normal.jpg",
      "coverPicture": "https://pbs.twimg.com/profile_banners/1764631141926002689/1773416426",
      "description": "Research and investments. DMs open.",
      "location": "Subscribe →",
      "followers": 14083,
      "following": 376,
      "status": "",
      "canDm": true,
      "canMediaTag": true,
      "createdAt": "Mon Mar 04 12:37:18 +0000 2024",
      "entities": {
        "description": {},
        "url": {
          "urls": [
            "…"
          ]
        }
      },
      "fastFollowersCount": 0,
      "favouritesCount": 2033,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "…": "…"
    },
    "replyCount": 16,
    "likeCount": 157,
    "quoteCount": 8,
    "viewCount": "44324",
    "createdAt": "Fri Mar 28 09:01:12 +0000 2025",
    "title": "When Tokens Burn",
    "preview_text": "Breaking down how crypto protocols approach revenue and cash flow\nThis is a summarised version of a …",
    "cover_media_img_url": "https://pbs.twimg.com/media/GnHXrznXUAEs-v5.jpg",
    "contents": [
      {
        "type": "unstyled",
        "text": "Breaking down how crypto protocols approach revenue and cash flow",
        "inlineStyleRanges": [
          "…"
        ]
      }
    ]
  },
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get article?