Retrieve users who liked a specific tweet with profile details and follower counts
cURL
curl --request GET \ --url https://api.example.com/x/tweets/{id}/favoriters \ --header 'x-api-key: <x-api-key>'
curl https://xquik.com/api/v1/x/tweets/1893456789012345678/favoriters \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq # Page 2 curl -G https://xquik.com/api/v1/x/tweets/1893456789012345678/favoriters \ --data-urlencode "cursor=abc123" \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq
next_cursor
Show user object
{ "users": [ { "id": "987654321", "username": "xquikcom", "name": "Xquik", "followers": 10000, "verified": true } ], "has_next_page": true, "next_cursor": "DAADDAABCgABF..." }
{ "error": "invalid_tweet_id" }
{ "error": "unauthenticated" }
{ "error": "no_subscription" }
{ "error": "x_api_unavailable" }
Was this page helpful?