Skip to main content
GET
https://xquik.com/api/v1
/
styles
/
{username}
Get Style
curl --request GET \
  --url https://xquik.com/api/v1/styles/{username} \
  --header 'x-api-key: <api-key>'
This endpoint does not count against your monthly usage quota.
curl -X GET https://xquik.com/api/v1/styles/elonmusk \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path Parameters

username
string
required
X username to look up. Lowercased for lookup. The @ prefix is automatically stripped if included.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.

Response

xUsername
string
Normalized X username (lowercase, no @ prefix).
tweetCount
number
Number of cached tweets.
isOwnAccount
boolean
true if the user has set their X identity to this account.
fetchedAt
string
ISO 8601 timestamp when tweets were fetched from X.
tweets
object[]
Array of cached tweets.
{
  "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"
    }
  ]
}
Related: List Styles to see all cached styles, Delete Style to remove this cached style, or Analyze Performance to fetch engagement metrics for these tweets.