1 credit per tweet returned · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/x/users/44196397/mentions" \
-H "x-api-key: xq_YOUR_KEY_HERE" | jq
Path parameters
User ID (numeric) or username.
Query parameters
Pagination cursor from a previous response. Omit for the first page.
ISO 8601 timestamp. Only return mentions after this time.
ISO 8601 timestamp. Only return mentions before this time.
Your API key. Session cookie authentication is also supported.
Response
Array of tweets mentioning the user.
Whether more results are available.
Cursor for the next page.
{
"tweets": [
{
"id": "1893456789012345678",
"text": "Hey @user check this out!",
"createdAt": "2026-03-27T10:00:00.000Z",
"likeCount": 5
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGE..."
}
{ "error": "invalid_user_id" }
{ "error": "unauthenticated" }
{ "error": "no_subscription" }