Skip to main content
POST
/
competitor
/
tracked
Tracked Competitors
curl --request POST \
  --url https://app.mentionpilot.ai/api/v1/competitor/tracked \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brand_id": 1
}'
{
  "success": true,
  "competitors": [
    {
      "name": "HubSpot",
      "domain": "hubspot.com",
      "total_responses": 80,
      "visibility": 65,
      "sentiment": 74,
      "position": 2.1
    },
    {
      "name": "Salesforce",
      "domain": "salesforce.com",
      "total_responses": 80,
      "visibility": 50,
      "sentiment": 68,
      "position": 3.4
    }
  ]
}

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 tracked competitors for

Example:

1

Response

List of tracked competitors with metrics

success
boolean
Example:

true

competitors
object[]