Skip to main content
GET
/
support
/
tickets
List tickets
curl --request GET \
  --url https://xquik.com/api/v1/support/tickets \
  --header 'x-api-key: <x-api-key>'
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

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.