Skip to main content
POST
Query AI Search Citations Data (Async)

Authorizations

Authorization
string
header
required

Conductor API token, sent as Bearer cond_<your-api-token>. Generate a token from Integrations > API > Create API Token.

Body

application/json

Submit a new query with filters and parameters. Returns an executionId to track the query.

account_id
integer
required

Required account ID to filter results.

Required range: x >= 1
Example:

101

start_date
string<date>
required

Start date of the time period (yyyy-MM-dd). If collection_frequency is WEEKLY or not set, this must be a Sunday. If collection_frequency is MONTHLY, this must be the first day of the month.

Example:

"2025-11-02"

end_date
string<date>
required

End date of the time period (yyyy-MM-dd). If collection_frequency is WEEKLY or not set, this must be a Saturday. If collection_frequency is MONTHLY, this must be the last day of the month.

Example:

"2025-11-29"

collection_frequency
enum<string>
default:WEEKLY

Frequency of data collection.

Available options:
DAILY,
WEEKLY,
MONTHLY
web_property_ids
integer[]

(Optional) list of web property IDs to filter results.

Required range: x >= 1
Example:
ai_search_engines
string[]

(Optional) list of AI engines to filter.

Example:
locodes
string[]

(Optional) list of locodes to filter (case-insensitive). Based on ISO names from a predefined dictionary. A locode can represent a country ("US"), city ("US NYC"), state ("PL-02"), or a specific location (e.g., an airport).

Required string length: 2 - 12
Example:
languages
string[]

(Optional) list of search engine language codes to filter (case-insensitive; e.g., en_US, hant_TW).

Required string length: 2 - 7
Example:
topics
string[]

(Optional) list of topics to filter.

Example:
prompts
string[]

(Optional) list of prompts to filter.

Example:
prompt_type
enum<string>

(Optional) indicates whether the prompt is branded or unbranded.

Available options:
branded,
unbranded
Example:

"branded"

intents
string[]

(Optional) list of intents to filter. Options include: Education, Brand/Service Navigation, Pricing, Support, Recommendations, Comparison, Purchase, Other.

Example:
personas
string[]

(Optional) list of user-defined personas to filter (e.g., "android user", "developers").

Example:
root_domains
string[]

(Optional) list of root domains to filter.

Example:
domains
string[]

(Optional) list of domains to filter (e.g., blog.conductor.com).

Example:
citation_urls
string[]

(Optional) list of citation URLs to filter.

Example:
citation_attributions
string[]

(Optional) list of citation ownership to filter (case-insensitive).

Example:

Response

Query completed successfully

results
string[][]

List of query results. Each item is a positional tuple row. Available only when executionState is COMPLETED.

Positional tuple row for AI Search Citation results. Column order matches the schema metadata. All values are returned as strings.

Minimum array length: 24
executionState
enum<string>

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.
Available options:
IN_PROGRESS,
COMPLETED,
FAILED
executionId
string

Unique identifier for the query execution. Valid for 7 days. Use this for polling and pagination.

requestId
string

Unique identifier for the HTTP request, useful for support and debugging.

nextPageId
string

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.

totalRowCount
integer<int64>

Total number of rows across all pages (if available).

schema
object[]

Column metadata providing the name and type for each position in the results tuple.