1 credit per tweet returned · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/x/lists/1234567890/tweets" \
-H "x-api-key: xq_YOUR_KEY_HERE" | jq
Path parameters
List ID (numeric string).
Query parameters
Pagination cursor from a previous response. Omit for the first page.
ISO 8601 timestamp. Only return tweets after this time.
ISO 8601 timestamp. Only return tweets before this time.
Include reply tweets. Default: false.
Your API key. Session cookie authentication is also supported.
Response
Array of tweets from the list.
Whether more results are available.
Cursor for the next page. Pass as the cursor query parameter.
{
"tweets": [
{
"id": "1893456789012345678",
"text": "Hello from a list!",
"createdAt": "2026-03-27T10:00:00.000Z",
"likeCount": 42,
"retweetCount": 5,
"viewCount": 1200
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGE..."
}
{ "error": "invalid_list_id", "message": "List ID required" }
{ "error": "unauthenticated" }
{ "error": "no_subscription" }