Retrieve a cached tweet style profile with full tweet data
cURL
curl --request GET \ --url https://xquik.com/api/v1/styles/{username} \ --header 'x-api-key: <api-key>'
curl -X GET https://xquik.com/api/v1/styles/elonmusk \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq
@
true
{ "xUsername": "elonmusk", "tweetCount": 20, "isOwnAccount": false, "fetchedAt": "2026-02-24T10:30:00.000Z", "tweets": [ { "id": "1893456789012345678", "text": "The future is now.", "authorUsername": "elonmusk", "createdAt": "2026-02-24T14:22:00.000Z" } ] }
{ "error": "unauthenticated" }
{ "error": "style_not_found" }
Was this page helpful?