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

# Stop monitoring a company



## OpenAPI

````yaml delete /v2/monitors/{id}
openapi: 3.0.0
info:
  title: Topograph
  description: The Topograph API
  version: '0.1'
  contact: {}
servers:
  - url: https://api.topograph.co
security:
  - x-api-key: []
tags: []
paths:
  /v2/monitors/{id}:
    delete:
      tags:
        - Monitors
      summary: Stop monitoring a company
      operationId: MonitoringController_stopMonitoring_v2
      parameters:
        - name: id
          required: true
          in: path
          description: Monitor ID to stop
          schema:
            type: string
      responses:
        '204':
          description: Monitor deleted successfully
        '401':
          description: Invalid or missing API key
        '404':
          description: Monitor not found or access denied
      security:
        - x-api-key: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````