Skip to main content
DELETE
/
monitors
/
keywords
/
{id}
Delete keyword monitor
curl --request DELETE \
  --url https://api.example.com/monitors/keywords/{id} \
  --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 DELETE https://xquik.com/api/v1/monitors/keywords/21 \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
The unique keyword monitor ID.

Headers

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

Response

success
boolean
Always true on successful deletion.
{ "success": true }
The keyword monitor is deleted and its stored events are removed with it. Pause with isActive: false if you want to stop new checks without deleting the monitor.
Related: List Keyword Monitors to verify removal, or Create Keyword Monitor to track a new query.
Last modified on May 6, 2026