Skip to main content
GET
/
x
/
tweets
/
{id}
/
favoriters
Get tweet favoriters
curl --request GET \
  --url https://xquik.com/api/v1/x/tweets/{id}/favoriters \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

Requested result counts are upper bounds for paid authenticated calls. When remaining credits cannot cover the full page or ID list, Xquik returns fewer results. If zero paid results are affordable, it returns 402 insufficient_credits.
1 credit per result returned · All plans from $0.00012/credit · Accepts MPP
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
Use GET /x/tweets/{id}/favoriters when a workflow needs one row per account that liked a tweet for giveaway checks, CRM enrichment, audience analysis, or follow-up jobs. Store source_tweet_id, liker_id, username, display_name, follower_count, following_count, verified, profile_image_url, and next_cursor instead of logging the full page response.

Path parameters

id
string
required
Tweet ID (numeric string).

Query parameters

cursor
string
Pagination cursor. Pass the next_cursor value from the previous response to fetch the next page.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

users
object[]
Array of users who liked the tweet.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Opaque cursor for the next page. Empty string when no more results.
{
  "users": [
    {
      "id": "987654321",
      "username": "xquikcom",
      "name": "Xquik",
      "followers": 10000,
      "verified": true
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAADDAABCgABF..."
}
Last modified on May 19, 2026