Skip to main content
GET
/
monitors
/
keywords
List keyword monitors
curl --request GET \
  --url https://api.example.com/monitors/keywords \
  --header 'x-api-key: <x-api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

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

Free - does not consume credits
curl -X GET https://xquik.com/api/v1/monitors/keywords \
  -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 keyword monitor objects.
monitors[].id
string
Unique keyword monitor ID.
monitors[].query
string
Normalized X search query.
monitors[].eventTypes
string[]
Subscribed event types.
monitors[].isActive
boolean
Whether the monitor is currently active.
monitors[].createdAt
string
ISO 8601 creation timestamp.
monitors[].nextBillingAt
string
Next hourly credit charge time for active monitor billing.
total
number
Total number of keyword monitors.
{
  "monitors": [
    {
      "id": "21",
      "query": "xquik OR \"x api\"",
      "eventTypes": ["tweet.new"],
      "isActive": true,
      "createdAt": "2026-02-24T10:30:00.000Z",
      "nextBillingAt": "2026-02-24T11:30:00.000Z"
    }
  ],
  "total": 1
}
Returns up to 200 keyword monitors. There is no pagination. Contact support if you need more.
Related: Create Keyword Monitor to add a query, or Get Keyword Monitor to fetch one monitor.
Last modified on May 6, 2026