Compare two cached tweet style profiles side by side
cURL
curl --request GET \ --url https://xquik.com/api/v1/styles/compare \ --header 'x-api-key: <x-api-key>'
curl -G https://xquik.com/api/v1/styles/compare \ -d "username1=elonmusk" \ -d "username2=sama" \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq
Show style object
id
text
authorUsername
createdAt
style1
{ "style1": { "xUsername": "elonmusk", "tweetCount": 20, "fetchedAt": "2026-02-24T10:30:00.000Z", "isOwnAccount": false, "tweets": [ { "id": "1893456789012345678", "text": "The future is now.", "authorUsername": "elonmusk", "createdAt": "2026-02-24T09:00:00.000Z" } ] }, "style2": { "xUsername": "sama", "tweetCount": 18, "fetchedAt": "2026-02-25T14:00:00.000Z", "isOwnAccount": false, "tweets": [ { "id": "1893456789012345999", "text": "Intelligence is not zero-sum.", "authorUsername": "sama", "createdAt": "2026-02-25T12:00:00.000Z" } ] } }
{ "error": "missing_params", "message": "Both usernames are required" }
username1
username2
{ "error": "unauthenticated", "message": "Missing or invalid API key" }
{ "error": "style_not_found", "message": "No cached style found for this username" }
Was this page helpful?