Skip to main content
curl -X GET https://xquik.com/api/v1/monitors \
  -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

monitors
object[]
Array of monitor objects.
monitors[].id
string
Unique monitor ID.
monitors[].username
string
Normalized X username.
monitors[].xUserId
string
Resolved X user ID.
monitors[].eventTypes
string[]
Subscribed event types.
monitors[].isActive
boolean
Whether the monitor is currently active.
monitors[].createdAt
string
ISO 8601 creation timestamp.
total
number
Total number of monitors.
{
  "monitors": [
    {
      "id": "7",
      "username": "elonmusk",
      "xUserId": "44196397",
      "eventTypes": ["tweet.new", "tweet.reply"],
      "isActive": true,
      "createdAt": "2026-02-24T10:30:00.000Z"
    },
    {
      "id": "12",
      "username": "xquik_",
      "xUserId": "1849726401547751424",
      "eventTypes": ["tweet.new", "tweet.quote", "tweet.reply", "tweet.retweet"],
      "isActive": true,
      "createdAt": "2026-02-25T14:00:00.000Z"
    }
  ],
  "total": 2
}
Returns up to 200 monitors. There is no pagination — if you have more monitors, contact support.
Related: Create Monitor to add a new monitor, or Get Monitor to fetch details for a specific monitor.