Retrieve a cached tweet style profile with full tweet data
cURL
curl --request GET \ --url https://xquik.com/api/v1/styles/{id} \ --header 'x-api-key: <api-key>'
Documentation IndexFetch the complete documentation index at: https://docs.xquik.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.xquik.com/llms.txt
Use this file to discover all available pages before exploring further.
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", "message": "Missing or invalid API key" }
{ "error": "style_not_found", "message": "No cached style found for this username" }
{ "error": "rate_limit_exceeded", "message": "Too many requests. Try again later.", "retryAfter": 1 }
Retry-After
Was this page helpful?