> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Monitor

> Delete a monitor and stop its deliveries

Deletes a monitor and all of its targets. Returns 404 if the monitor is not found on your API key.

## Path Parameters

<ParamField path="monitor_id" type="number" required>
  The monitor to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.dataforb2b.ai/monitors/42 \
    -H "api_key: YOUR_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  { "deleted": true, "id": 42 }
  ```
</ResponseExample>
