Skip to main content
POST
/
competitor
/
untracked
Untracked Competitors
curl --request POST \
  --url https://app.mentionpilot.ai/api/v1/competitor/untracked \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brand_id": 1
}'
{
  "success": true,
  "competitors": [
    {
      "name": "Pipedrive",
      "domain": "pipedrive.com",
      "total_responses": 80,
      "visibility": 30
    },
    {
      "name": "Zoho CRM",
      "domain": "zohocrm.com",
      "total_responses": 80,
      "visibility": 18
    }
  ]
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request parameters

brand_id
integer
required

ID of the brand to fetch untracked competitors for

Example:

1

Response

List of untracked competitors with visibility

success
boolean
Example:

true

competitors
object[]