get/api/v2/query-fanouts/{promptId}

Get query fanout detail.

Get query fanout detail.

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

promptId

path / required

No description provided.

Schema: string

Responses

200

Successful JSON response.

application/json
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "prompt": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "intent": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "averageVisibility": {
      "type": "integer",
      "nullable": true
    },
    "combinedVolume": {
      "type": "integer"
    },
    "combinedDifficulty": {
      "type": "integer",
      "nullable": true
    },
    "keywords": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "source": {
            "type": "string",
            "description": "Term discovery provenance. Canonical values include chatgpt, dataforseo, manual, import, dataforseo_llm_responses, and dataforseo_llm_scraper; historic rows may contain older provider strings."
          },
          "metricSource": {
            "type": "string",
            "description": "Metric refresh provenance. Canonical values include local_proxy, mock, dataforseo, and dataforseo_unavailable; historic rows may contain older provider strings."
          },
          "extractedFromChatgpt": {
            "type": "boolean"
          },
          "googleSearchVolume": {
            "type": "integer",
            "nullable": true
          },
          "bingSearchVolume": {
            "type": "integer",
            "nullable": true
          },
          "aiSearchVolume": {
            "type": "integer",
            "nullable": true
          },
          "googleKeywordDifficulty": {
            "type": "integer",
            "nullable": true
          }
        },
        "required": [
          "id",
          "text",
          "source",
          "metricSource",
          "extractedFromChatgpt",
          "googleSearchVolume",
          "bingSearchVolume",
          "aiSearchVolume",
          "googleKeywordDifficulty"
        ]
      }
    }
  },
  "required": [
    "id",
    "prompt",
    "type",
    "intent",
    "createdAt",
    "averageVisibility",
    "combinedVolume",
    "combinedDifficulty",
    "keywords"
  ]
}
404

Error response.

application/json
{
  "type": "object",
  "additionalProperties": true
}

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.