Skip to main content
DELETE
/
api
/
v1
/
monitors
/
{id}
Delete monitor
curl --request DELETE \
  --url https://developer.thehog.ai/api/v1/monitors/{id} \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Secret-Key: <api-key>'
{
  "statusCode": 401,
  "error": "Unauthorized",
  "message": "Authentication is required.",
  "path": "/api/v1/search",
  "timestamp": "2026-05-21T09:08:10.000Z",
  "requestId": "506af9b3-01a9-43be-9eb4-8458fe3e4f5b"
}

DELETE /api/v1/monitors/:id

Permanently delete a monitor.
Permanently delete a monitor. Historical events are retained.

Example

curl -X DELETE https://developer.thehog.ai/api/v1/monitors/mon_01HZXYZ \
  -H "X-Access-Key: ak_xxxxxxxxxxxxxxxx" \
  -H "X-Secret-Key: sk_xxxxxxxxxxxxxxxx"

Authorizations

X-Access-Key
string
header
required

The public API key from the Credentials page.

X-Secret-Key
string
header
required

The API secret shown when the credential is created.

Path Parameters

id
string
required

Monitor ID.

Response

Monitor deleted.