Execute an asynchronous query against AI search configuration metadata.
The response schema varies based on the config_type parameter.
This endpoint follows the asynchronous query flow.
topics: Tracked AI search topics with status, search engine, frequency, locale, and prompt count. Supports optional filters: topic_status, prompt_status.prompts: Individual prompts with type, status, topic, search engine, locale, language, intent, and persona. Supports optional filters: topic_status, prompt_status, topics.search_engines: Distinct AI search engines in use for tracked topics.locales: Distinct locales in use for tracked topics.languages: Distinct languages in use for tracked topics.brands: Tracked brands with associated owned and comparison web properties.personas: Personas defined for the account.intents: Distinct intents in use for tracked prompts.sentiment_categories: Distinct sentiment categories observed in AI search results.executionId.executionId to check status. Returns 200 with results when COMPLETED.executionId and nextPageId from the previous response.nextPageId returned in the previous response. Parallel pagination is not supported.Documentation Index
Fetch the complete documentation index at: https://conductor.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
API Key as a query parameter
Request signature computed using API key and secret. Valid for 5 minutes after creation.
API Key as an HTTP header (must match apiKey query parameter)
Submit a new AI search config query. Returns an executionId to track the query.
Type of AI search configuration data to return:
topics: Tracked topics with status, search engine, frequency, locale, and prompt count.prompts: Individual prompts with type, status, topic, search engine, locale, language, intent, and persona.search_engines: Distinct AI search engines used by tracked topics.locales: Distinct locales used by tracked topics.languages: Distinct languages used by tracked topics.brands: Tracked brands with associated owned and comparison web properties.personas: Personas defined for the account.intents: Distinct intents used by tracked prompts.sentiment_categories: Distinct sentiment categories observed in AI search results.topics, prompts, search_engines, locales, languages, brands, personas, intents, sentiment_categories "prompts"
Required account ID to filter results.
x >= 1101
(Optional, topics and prompts only) Comma-separated topic statuses to include.
Accepted values: ACTIVE, INACTIVE. An empty string disables the filter. Default is ACTIVE.
"ACTIVE"
(Optional, topics and prompts only) Comma-separated prompt statuses to include.
Accepted values: ACTIVE, INACTIVE. An empty string disables the filter. Default is ACTIVE.
"ACTIVE"
(Optional, prompts only) Comma-separated list of topic names to filter prompts by.
"ai search,seo tools"
Maximum number of rows to return for the submitted query.
x >= 1100
Query completed successfully (returned when polling with queryExecutionId).
The response schema and results tuple structure vary by config_type — see Config Types above.
The default schema example below shows the prompts config_type response.
Named 200 response examples are also provided for each supported config_type.
List of query results. Each item is a positional tuple row.
Available only when executionState is COMPLETED.
Column order depends on config_type — use the schema field to interpret positions.
Positional tuple row. Column order depends on config_type:
topics (6 columns): topic_name, topic_status, search_engine, tracking_frequency, locode, prompt_count
prompts (11 columns): prompt, prompt_type, prompt_status, tracking_start_date, tracking_frequency, topic_name, search_engine, locode, language, intent, persona
search_engines (1 column): name
locales (1 column): locode
languages (1 column): name
brands (4 columns): brand_name, web_property_id, web_property_name, is_owned (true for owned, false for comparison)
personas (2 columns): name, description
intents (1 column): name
sentiment_categories (1 column): sentiment_category
Use the schema field in the response to interpret column positions.
Current execution state of the query:
IN_PROGRESS: The query is still running. Poll again later.COMPLETED: The query finished successfully. Results are available.FAILED: The query failed. Check the error message if available.IN_PROGRESS, COMPLETED, FAILED Unique identifier for the query execution. Valid for 7 days. Use this for polling and pagination.
Unique identifier for the HTTP request, useful for support and debugging.
Token for retrieving the next page of results. Available as long as the executionId is valid (7 days).
If null, there are no more pages available.
Total number of rows across all pages (if available).
Column metadata providing the name and type for each position in the results tuple.