WWatchLLM
get/api/v2/shopping

Return shopping visibility overview.

Return shopping visibility overview.

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
rangequeryShortcut for the last 7 or 90 days. Date filters take precedence when present.string (7, 90)
qqueryProduct-name search. Alias: productSearch.string
productSearchqueryAlias for q product-name search.string
merchantquerySingle merchant-domain filter used by the workspace UI.string
merchantDomainsqueryComma-separated merchant domains are accepted.string
responsequeryFilter to product cards extracted from one persisted response. Alias: responseId.string
responseIdqueryAlias for response.string
monitorIdsqueryComma-separated values are accepted.string
modelIdsqueryComma-separated values are accepted.string

Responses

200

Successful JSON response.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "totalItems": {
      "type": "integer"
    },
    "totalProducts": {
      "type": "integer"
    },
    "totalMerchants": {
      "type": "integer"
    },
    "avgPosition": {
      "type": "number",
      "nullable": true
    },
    "positionSeries": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "date": {
            "type": "string"
          },
          "avgPosition": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "date",
          "avgPosition"
        ]
      }
    },
    "topProducts": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "productName": {
            "type": "string"
          },
          "appearances": {
            "type": "integer"
          },
          "avgPosition": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "productName",
          "appearances",
          "avgPosition"
        ]
      }
    },
    "topMerchants": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "merchantDomain": {
            "type": "string"
          },
          "appearances": {
            "type": "integer"
          }
        },
        "required": [
          "merchantDomain",
          "appearances"
        ]
      }
    },
    "productBars": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "productName": {
            "type": "string"
          },
          "appearances": {
            "type": "integer"
          },
          "avgPosition": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "productName",
          "appearances",
          "avgPosition"
        ]
      }
    }
  },
  "required": [
    "totalItems",
    "totalProducts",
    "totalMerchants",
    "avgPosition",
    "positionSeries",
    "topProducts",
    "topMerchants",
    "productBars"
  ]
}

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.