get/api/v2/responses

List persisted LLM responses.

List persisted LLM responses.

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

page

query

No description provided.

Schema: integer

size

query

No description provided.

Schema: integer

query

query

No description provided.

Schema: string

monitorIds

query

Comma-separated values are accepted.

Schema: string

promptIds

query

Comma-separated values are accepted.

Schema: string

modelIds

query

Comma-separated values are accepted.

Schema: string

brandIds

query

Comma-separated values are accepted.

Schema: string

sentiments

query

Comma-separated values are accepted.

Schema: string

tags

query

Comma-separated values are accepted.

Schema: string

startDate

query

No description provided.

Schema: string:date-time

endDate

query

No description provided.

Schema: 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.