get/api/v2/tracked-pages

List tracked Page Tracker URLs with citation, visitor, and crawler rollups. WatchLLM extension, not confirmed Promptwatch public REST parity.

List tracked Page Tracker URLs with citation, visitor, and crawler rollups. WatchLLM extension, not confirmed Promptwatch public REST parity.

Requires bearer API key

Parameters

X-Project-Id

header

Required for organization-wide API keys on project-scoped endpoints. Project-scoped keys infer the project automatically.

Schema: string

query

query

No description provided.

Schema: string

domain

query

No description provided.

Schema: string

Responses

200

Tracked page list.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "id": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "domain": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "timesCited": {
            "type": "integer"
          },
          "uniquePrompts": {
            "type": "integer"
          },
          "citationVisits30d": {
            "type": "integer"
          },
          "crawlerVisits30d": {
            "type": "integer"
          },
          "lastCited": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "id",
          "url",
          "domain",
          "path",
          "timesCited",
          "uniquePrompts",
          "citationVisits30d",
          "crawlerVisits30d"
        ]
      }
    },
    "total": {
      "type": "integer"
    },
    "summary": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "totalTracked": {
          "type": "integer"
        },
        "citedPages": {
          "type": "integer"
        },
        "citationVisits30d": {
          "type": "integer"
        },
        "crawlerVisits30d": {
          "type": "integer"
        },
        "since30d": {
          "type": "string",
          "format": "date-time"
        },
        "domainOptions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "totalTracked",
        "citedPages",
        "citationVisits30d",
        "crawlerVisits30d",
        "since30d",
        "domainOptions"
      ]
    }
  },
  "required": [
    "items",
    "total",
    "summary"
  ]
}

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.