1 credit per tweet returned · All plans from $0.00012/credit · Accepts MPP
curl "https://xquik.com/api/v1/x/tweets/1893456789012345678/replies" \
-H "x-api-key: xq_YOUR_KEY_HERE" | jq
Path parameters
Tweet ID (numeric string).
Query parameters
Pagination cursor from a previous response. Omit for the first page.
ISO 8601 timestamp. Only return replies after this time.
ISO 8601 timestamp. Only return replies before this time.
Your API key. Session cookie authentication is also supported.
Response
Whether more results are available.
Cursor for the next page.
{
"tweets": [
{
"id": "1893456789012345679",
"text": "I agree with this!",
"createdAt": "2026-03-27T11:00:00.000Z",
"isReply": true,
"inReplyToId": "1893456789012345678"
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGE..."
}
{ "error": "unauthenticated" }
{ "error": "no_subscription" }