Skip to main content
POST
/
twitter
/
tweets-favoriters
Get Favoriters
curl --request POST \
  --url https://api.twitterxapi.com/twitter/tweets-favoriters \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tweet_id": "<string>",
  "target_count": 123,
  "cookie": "ct0=abc123... or 2c4a4e1832096aa694c739b83c83b6d96d43eba7"
}'
{
  "code": 123,
  "msg": "<string>",
  "data": [
    {
      "id": "1717001045992251392",
      "name": "Cryptoklepto",
      "screen_name": "CK_Cryptoklepto",
      "created_at": "Mon Oct 28 02:32:47 +0000 2024",
      "created_at_datetime": "2024-10-28T02:32:47.000Z",
      "can_dm": true,
      "can_media_tag": true,
      "default_profile": true,
      "default_profile_image": true,
      "description": "<string>",
      "description_urls": [],
      "fast_followers_count": 123,
      "favourites_count": 123,
      "followers_count": 123,
      "following_count": 123,
      "has_custom_timelines": true,
      "is_blue_verified": true,
      "is_translator": true,
      "listed_count": 123,
      "location": "New York, USA",
      "media_count": 123,
      "normal_followers_count": 123,
      "pinned_tweet_ids": [],
      "possibly_sensitive": true,
      "profile_banner_url": "<string>",
      "profile_image_url": "<string>",
      "protected": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
tweet_id
string
required

The ID of the tweet to get favoriters.

target_count
integer
required

The number of favoriters to get.

The user's Twitter authentication cookie or Twitter auth_token, how-to-get-twitter-cookie

Example:

"ct0=abc123... or 2c4a4e1832096aa694c739b83c83b6d96d43eba7"

Response

A list of user objects.

code
integer
required

The status code of the response.

msg
string
required

The message of the response.

data
UserModel · object[]
required

A list of user objects.