WWatchLLM
get/api/v2/responses

List persisted LLM responses.

List persisted LLM responses.

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
queryqueryNo description provided.string
monitorIdsqueryComma-separated values are accepted.string
promptIdsqueryComma-separated values are accepted.string
modelIdsqueryComma-separated values are accepted.string
brandIdsqueryComma-separated values are accepted.string
sentimentsqueryComma-separated values are accepted.string
tagsqueryComma-separated values are accepted.string
startDatequeryNo description provided.string:date-time
endDatequeryNo description provided.string:date-time

Responses

200

Successful JSON response.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true,
        "properties": {
          "id": {
            "type": "string"
          },
          "promptId": {
            "type": "string"
          },
          "promptText": {
            "type": "string"
          },
          "monitorId": {
            "type": "string",
            "nullable": true
          },
          "modelId": {
            "type": "string",
            "nullable": true
          },
          "modelName": {
            "type": "string"
          },
          "providerName": {
            "type": "string"
          },
          "outputText": {
            "type": "string"
          },
          "visibilityScore": {
            "type": "integer"
          },
          "sentimentScore": {
            "type": "integer"
          },
          "sentiment": {
            "type": "string",
            "enum": [
              "positive",
              "neutral",
              "negative"
            ]
          },
          "generatedAt": {
            "type": "string",
            "format": "date-time"
          },
          "citationCount": {
            "type": "integer"
          },
          "brandMentionCount": {
            "type": "integer"
          }
        },
        "required": [
          "id",
          "modelName",
          "providerName",
          "outputText",
          "generatedAt"
        ]
      }
    },
    "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.