Skip to main content
GET
/
x
/
users
/
{id}
/
likes
Get user likes
curl --request GET \
  --url https://api.example.com/x/users/{id}/likes \
  --header 'x-api-key: <x-api-key>'
1 credit per result returned · All plans from $0.00012/credit · Accepts MPP
curl https://xquik.com/api/v1/x/users/44196397/likes \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

# Page 2
curl -G https://xquik.com/api/v1/x/users/44196397/likes \
  --data-urlencode "cursor=abc123" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
X user ID (numeric string) or username.

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

tweets
object[]
Array of liked tweets.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Opaque cursor for the next page. Empty string when no more results.
{
  "tweets": [
    {
      "id": "1893456789012345678",
      "text": "A tweet that was liked",
      "createdAt": "2026-02-24T10:00:00.000Z",
      "likeCount": 300,
      "retweetCount": 80,
      "url": "https://x.com/user/status/1893456789012345678",
      "media": [{ "type": "photo", "mediaUrl": "https://pbs.twimg.com/media/example.jpg" }]
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAADDAABCgABF..."
}