curl https://xquik.com/api/v1/draws/66666 \
-H "x-api-key: xq_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2" | jq
Path Parameters
Your API key. This endpoint also accepts session cookie authentication.
Response
200 OK
400 Invalid ID
401 Unauthenticated
404 Not Found
Draw details including tweet metadata.
Full text content of the tweet.
Username of the tweet author.
Like count at time of draw.
Retweet count at time of draw.
Reply count at time of draw.
Quote tweet count at time of draw.
Draw status (e.g. completed).
Entries that passed all filters.
ISO 8601 creation timestamp.
ISO 8601 timestamp of when winners were selected. Present only for completed draws.
Selected winners and backup winners ordered by position.
Winner position (1-indexed).
X username of the winner.
Tweet ID of the winning reply.
true if this is a backup winner.
{
"draw": {
"id": "66666",
"tweetId": "1893456789012345678",
"tweetUrl": "https://x.com/xquik/status/1893456789012345678",
"tweetText": "Giveaway time! Reply to enter. 3 winners get a free month of Xquik Pro.",
"tweetAuthorUsername": "xquik",
"tweetLikeCount": 2450,
"tweetRetweetCount": 1820,
"tweetReplyCount": 847,
"tweetQuoteCount": 95,
"status": "completed",
"totalEntries": 847,
"validEntries": 312,
"createdAt": "2026-02-24T10:00:00.000Z",
"drawnAt": "2026-02-24T10:05:00.000Z"
},
"winners": [
{
"position": 1,
"authorUsername": "alice_web3",
"tweetId": "1893456789012345700",
"isBackup": false
},
{
"position": 2,
"authorUsername": "bob_dev",
"tweetId": "1893456789012345701",
"isBackup": false
},
{
"position": 3,
"authorUsername": "charlie_nft",
"tweetId": "1893456789012345702",
"isBackup": false
}
]
}
{ "error": "invalid_id" }
The provided draw ID is not a valid format.{ "error": "unauthenticated" }
Missing or invalid API key / session cookie.No draw exists with this ID, or it belongs to a different account.