Check if a user liked a specific tweet

This endpoint provides a convenient way to check if a user liked a tweet identified by [tweet_id]. This will recursively retrieve all users who recently liked a tweet (up to [max_count] total results) and check if the [user_id] is present among the retrieved users.

Endpoint

GET https://api.socialdata.tools/twitter/tweets/[tweet_id]/liked_by/[user_id]?max_count=?

Endpoint parameters

Pricing Considerations

Since there is no way of confirming if a user liked a tweet directly, we need to recursively retrieve users who liked the target tweet and check if user_id is present. SocialData API pricing per request is based on the number of user objects you retrieve, therefore the cost of each request is going to depend on the value of max_count.

Setting higher max_count will give you more precise results, but will also result in higher cost per request.

If you set a high max_count, but we are able to determine that the user liked the target tweet before reading all the max_count users - you will only be charged for the actual number of users retrieved by SocialData API (see field [users_checked_count] in the response).

If you perform this check relatively frequently for each target tweet - we recommend keeping max_count low to maintain a lower cost. 100 seems like a sensible default. This may, however, result in occasional false negatives.

Caching

To minimize your costs, optimize response time, and avoid repeated requests we cache all ids of users who liked a tweet for a period of 30 minutes. If the requested [user_id] is found in cached values - you will receive a response immediately. Responses that used cached values incur a charge equivalent to 20 user objects by default.

If the target user_id is not found in cache - SocialData API will proceed to getting the most recent list of users who liked a tweet, and cache their ids again.

Response codes

  • HTTP 200 OK - succeeded

  • HTTP 402 Payment Required - not enough credits to perform this request

  • HTTP 404 Not Found - requested target tweet does not exist

  • HTTP 422 Unprocessable Content - validation failed (e.g. one of the required parameters was not provided)

  • HTTP 500 Internal Server Error - other error, typically means that SocialData API failed to obtain the requested information and you should try again later

Rate limits

By default this endpoint will process up to 120 requests per minute. Please reach out to support@socialdata.tools if you need to raise your rate limit.

Example request

curl "https://api.socialdata.tools/twitter/tweet/456456456/liked_by/123123123?max_count=100"
-H 'Authorization: Bearer API_KEY'
-H 'Accept: application/json'

Example response

// If succeeded: 
{
    "status": "success",
    "source_user_id": "123123123...",
    "target_tweet_id": "456456456...",
    "is_liked": true,
    "retweeters_checked_count": 100
}

// If failed:
{
    "status":"error",
    "message":"User not found"
}

Last updated