Skip to main content
GET
https://xquik.com/api/v1
/
styles
List Styles
curl --request GET \
  --url https://xquik.com/api/v1/styles \
  --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 \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Headers

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

Response

styles
object[]
Array of cached style summaries.
{
  "styles": [
    {
      "xUsername": "elonmusk",
      "tweetCount": 20,
      "fetchedAt": "2026-02-24T10:30:00.000Z"
    },
    {
      "xUsername": "sama",
      "tweetCount": 18,
      "fetchedAt": "2026-02-25T14:00:00.000Z"
    }
  ]
}
Related: Analyze & Cache Style to add a new style, Get Style to fetch full tweet data for a specific style, or Compare Styles to compare two cached styles side by side.