Skip to main content
POST
/
article
Article Data
curl --request POST \
  --url https://api.sorsa.io/v3/article \
  --header 'ApiKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tweet_link": "<string>"
}
'
{
  "author": {
    "bio_urls": [
      "<string>"
    ],
    "can_dm": false,
    "created_at": "2009-06-02T20:12:29Z",
    "description": "Bio text",
    "display_name": "Elon Musk",
    "favourites_count": 1200,
    "followers_count": 100000,
    "followings_count": 500,
    "id": "44196397",
    "location": "Austin, TX",
    "media_count": 300,
    "pinned_tweet_ids": [
      "<string>"
    ],
    "possibly_sensitive": false,
    "profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
    "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
    "protected": false,
    "tweets_count": 5000,
    "username": "elonmusk",
    "verified": true
  },
  "bookmark_count": 123,
  "cover_image_url": "<string>",
  "full_text": "<string>",
  "likes_count": 123,
  "preview_text": "<string>",
  "published_at": "<string>",
  "quote_count": 123,
  "reply_count": 123,
  "retweet_count": 123,
  "views_count": 123
}

Authorizations

ApiKey
string
header
required

Body

application/json

Article request

Full URL of the tweet or article (e.g. https://x.com/user/status/123) or just the tweet ID.

Response

OK

author
object

Author profile data.

bookmark_count
integer

Number of bookmarks.

cover_image_url
string

URL of the article's cover image.

full_text
string

Complete article text.

likes_count
integer

Number of likes.

preview_text
string

Short preview or excerpt of the article.

published_at
string

Publication date in ISO 8601 format.

quote_count
integer

Number of quote tweets.

reply_count
integer

Number of replies.

retweet_count
integer

Number of retweets.

views_count
integer

Number of views (impressions).