WWatchLLM
get/api/v2/shopping/items

List shopping result items.

List shopping result items.

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
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": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "productName": {
            "type": "string"
          },
          "price": {
            "type": "string",
            "nullable": true
          },
          "merchantDomain": {
            "type": "string",
            "nullable": true
          },
          "rating": {
            "type": "number",
            "nullable": true
          },
          "reviewsCount": {
            "type": "integer",
            "nullable": true
          },
          "position": {
            "type": "integer",
            "nullable": true
          },
          "observedAt": {
            "type": "string",
            "format": "date-time"
          },
          "sourceModel": {
            "type": "string",
            "nullable": true
          },
          "sourceLabel": {
            "type": "string"
          },
          "sourceTone": {
            "type": "string"
          },
          "providerRunId": {
            "type": "string",
            "nullable": true
          },
          "executionModel": {
            "type": "string",
            "nullable": true
          },
          "prompt": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id",
          "productName",
          "price",
          "merchantDomain",
          "rating",
          "reviewsCount",
          "position",
          "observedAt",
          "sourceModel",
          "sourceLabel",
          "sourceTone",
          "providerRunId",
          "executionModel",
          "prompt"
        ]
      }
    },
    "total": {
      "type": "integer"
    },
    "page": {
      "type": "integer"
    },
    "size": {
      "type": "integer"
    },
    "totalPages": {
      "type": "integer"
    }
  },
  "required": [
    "items",
    "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.