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

url = "https://xquik.com/api/v1/support/tickets"

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/support/tickets', 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/support/tickets"

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
Support tickets are free for all authenticated users.
curl -X GET https://xquik.com/api/v1/support/tickets \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
const response = await fetch("https://xquik.com/api/v1/support/tickets", {
  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/support/tickets",
    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/support/tickets", 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

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

Response

tickets
object[]
Array of ticket objects.
tickets[].publicId
string
Unique ticket public ID.
tickets[].subject
string
Ticket subject.
tickets[].status
string
Current status: open, in_progress, resolved, or closed.
tickets[].messageCount
number
Total number of messages in the ticket.
tickets[].createdAt
string
ISO 8601 creation timestamp.
tickets[].updatedAt
string
ISO 8601 last update timestamp.
{
  "tickets": [
    {
      "publicId": "tkt_a1b2c3d4e5f6a1b2c3d4e5f6",
      "subject": "Cannot connect X account",
      "status": "open",
      "messageCount": 3,
      "createdAt": "2026-03-18T10:00:00Z",
      "updatedAt": "2026-03-18T12:30:00Z"
    }
  ]
}
Returns up to 200 tickets ordered by most recently updated. There is no pagination. Contact support if you need more.
Related: Create Ticket to open a new ticket, or Get Ticket to fetch details and message history for a specific ticket.
Last modified on May 6, 2026