WWatchLLM
get/api/v2/analytics/crawlers/events

List crawler events.

List crawler events.

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
pagequeryNo description provided.integer
sizequeryNo description provided.integer
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
pathMatchqueryNo description provided.string

Responses

200

Successful JSON response.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "timestamp": {
            "type": "string",
            "format": "date-time"
          },
          "statusCode": {
            "type": "integer",
            "nullable": true
          },
          "requestMethod": {
            "type": "string"
          },
          "requestPath": {
            "type": "string"
          },
          "hostname": {
            "type": "string",
            "nullable": true
          },
          "userAgent": {
            "type": "string"
          },
          "crawler": {
            "type": "string",
            "nullable": true
          },
          "referrer": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "timestamp",
          "requestMethod",
          "requestPath",
          "userAgent"
        ]
      }
    },
    "total": {
      "type": "integer"
    },
    "page": {
      "type": "integer"
    },
    "size": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    }
  },
  "required": [
    "data",
    "total",
    "page",
    "size",
    "totalPages"
  ]
}

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.