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

Path parameters

id
string
required
The unique 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 }

Deletion handoff

Use this endpoint when a tracked account should stop permanently. Use Update Monitor with isActive: false when you only need to pause alerts and keep the monitor available.

Permanent Remove

Delete removes the account monitor. Store returned success before treating the deleted ID as permanently removed. The deleted ID cannot be fetched, updated, resumed, or billed again.

Stored History

Stored events and webhook delivery records tied to this account monitor are removed with it. Export or reconcile records before deletion.

Pause Instead

Use PATCH /monitors/{id} with isActive: false to stop future checks, alerts, and hourly billing while preserving the monitor record.

Verify Removal

Call List Monitors after deletion. Get Monitor should return 404 for the deleted ID.

Track New Account

Create a new account monitor when the tracked account changes. Store the new id, username, xUserId, eventTypes, isActive, and nextBillingAt.

Webhook Reuse

Existing webhook endpoints remain configured. Keep their eventTypes aligned, then run Test Webhook before relying on new account monitor alerts.
The 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 Monitors to verify the monitor was removed, or Create Monitor to set up a new one.
Last modified on May 15, 2026