Documentation Index

Fetch the complete documentation index at: /llms.txt

Use this file to discover all available pages before exploring further.

Skip to main content
GET
/
styles
List styles
curl --request GET \
  --url https://xquik.com/api/v1/styles \
  --header 'x-api-key: <api-key>'
import requests

url = "https://xquik.com/api/v1/styles"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://xquik.com/api/v1/styles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://xquik.com/api/v1/styles"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
Free - does not consume credits
curl -X GET https://xquik.com/api/v1/styles \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
const response = await fetch("https://xquik.com/api/v1/styles", {
  method: "GET",
  headers: {
    "x-api-key": "xq_YOUR_KEY_HERE",
  },
});
const data = await response.json();
import requests

response = requests.get(
    "https://xquik.com/api/v1/styles",
    headers={"x-api-key": "xq_YOUR_KEY_HERE"},
)
data = response.json()
package main

import (
    "encoding/json"
    "fmt"
    "net/http"
)

func main() {
    req, err := http.NewRequest("GET", "https://xquik.com/api/v1/styles", nil)
    if err != nil {
        panic(err)
    }
    req.Header.Set("x-api-key", "xq_YOUR_KEY_HERE")

    resp, err := http.DefaultClient.Do(req)
    if err != nil {
        panic(err)
    }
    defer resp.Body.Close()

    var data map[string]interface{}
    if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
        panic(err)
    }
    fmt.Println(data)
}

Headers

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

Response

  • 200 OK
  • 401 Unauthenticated
  • 429 Rate Limited
object[]
Array of cached style summaries.
{
  "styles": [
    {
      "xUsername": "elonmusk",
      "tweetCount": 20,
      "fetchedAt": "2026-02-24T10:30:00.000Z",
      "isOwnAccount": false
    },
    {
      "xUsername": "sama",
      "tweetCount": 18,
      "fetchedAt": "2026-02-25T14:00:00.000Z",
      "isOwnAccount": false
    }
  ]
}
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.
Last modified on May 5, 2026
Morty Proxy This is a proxified and sanitized view of the page, visit original site.