WWatchLLM
get/api/v2/analytics/crawlers/top-crawlers

Return top AI crawlers by event volume.

Return top AI crawlers by event volume.

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
crawlersqueryComma-separated values are accepted.string
statusCodesqueryComma-separated values are accepted.string
pathqueryNo description provided.string
pathMatchqueryUse exact for an identical path match; partial matches by path prefix.string (exact, partial)
limitqueryNo description provided.string

Responses

200

Successful JSON response.

application/json
{
  "type": "array",
  "items": {
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "crawler": {
        "type": "string"
      },
      "count": {
        "type": "integer"
      },
      "percentage": {
        "type": "number"
      },
      "topPages": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "path": {
              "type": "string"
            },
            "count": {
              "type": "integer"
            }
          },
          "required": [
            "path",
            "count"
          ]
        }
      }
    },
    "required": [
      "crawler",
      "count",
      "percentage",
      "topPages"
    ]
  }
}

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.