/api/v2/query-fanoutsList query fanouts.
List query fanouts.
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
promptTypes
query
Comma-separated values are accepted.
Schema: string
intentTypes
query
Comma-separated values are accepted.
Schema: string
promptIds
query
Comma-separated values are accepted.
Schema: string
hasChatgptFanouts
query
No description provided.
Schema: string
sortBy
query
No description provided.
Schema: string
sortOrder
query
No description provided.
Schema: string
Responses
Successful JSON response.
application/json{
"type": "object",
"additionalProperties": false,
"properties": {
"items": {
"type": "array",
"items": {
"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"
]
}
},
"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.