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

# Untracked Competitors

> Returns untracked competitors for a brand with visibility only, aggregated across all brand prompts.



## OpenAPI

````yaml POST /competitor/untracked
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.mentionpilot.ai/api/v1
security:
  - bearerAuth: []
paths:
  /competitor/untracked:
    post:
      summary: Untracked Competitors
      description: >-
        Returns untracked competitors for a brand with visibility only,
        aggregated across all brand prompts.
      requestBody:
        description: Request parameters
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - brand_id
              properties:
                brand_id:
                  type: integer
                  description: ID of the brand to fetch untracked competitors for
                  example: 1
            example:
              brand_id: 1
      responses:
        '200':
          description: List of untracked competitors with visibility
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  competitors:
                    type: array
                    items:
                      $ref: '#/components/schemas/UntrackedCompetitor'
              example:
                success: true
                competitors:
                  - name: Pipedrive
                    domain: pipedrive.com
                    total_responses: 80
                    visibility: 30
                  - name: Zoho CRM
                    domain: zohocrm.com
                    total_responses: 80
                    visibility: 18
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: brand_id is required
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: Access denied
        '404':
          description: Brand not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                success: false
                error: Brand not found
components:
  schemas:
    UntrackedCompetitor:
      type: object
      properties:
        name:
          type: string
          description: Competitor brand name
          example: Pipedrive
        domain:
          type: string
          description: Competitor domain
          example: pipedrive.com
        total_responses:
          type: integer
          description: Total AI responses analyzed
          example: 80
        visibility:
          type: integer
          description: Percentage of responses where this competitor was mentioned (0–100)
          example: 30
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: An error occurred
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````