WWatchLLM
get/api/v2/responses/competitors

Return top competitor mentions from responses.

Return top competitor mentions from responses.

Requires bearer API key

Parameters

NameInDescription
X-Project-IdheaderRequired for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.string
startDatequeryNo description provided.string:date-time
endDatequeryNo description provided.string:date-time
limitqueryNo description provided.string
monitorIdsqueryComma-separated values are accepted.string
modelIdsqueryComma-separated values are accepted.string

Responses

200

Successful JSON response.

application/json
{
  "type": "array",
  "items": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "brandId": {
        "type": "string"
      },
      "name": {
        "type": "string"
      },
      "domain": {
        "type": "string",
        "nullable": true
      },
      "relation": {
        "type": "string"
      },
      "mentions": {
        "type": "integer"
      },
      "share": {
        "type": "number"
      }
    },
    "required": [
      "brandId",
      "name",
      "domain",
      "relation",
      "mentions",
      "share"
    ]
  }
}

Try it

Send this request to the local WatchLLM REST handler. Use a key from /workspace/api; organization keys can include X-Project-Id only when the endpoint documents that header.