ai_optimization_llm_mentions_search
Analyze aggregated LLM mentions metrics for domains or keywords to identify frequently referenced pages and optimize AI-related content strategies.
Instructions
This endpoint provides aggregated LLM mentions metrics grouped by the most frequently mentioned pages for the specified target
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| target | Yes | Array of target objects to search for LLM mentions. Each object must contain either 'domain' or 'keyword'. Maximum number of targets: 1000 | |
| location_name | No | full name of the location, example: 'United Kingdom', 'United States' | |
| language_code | No | Search engine language code (e.g., 'en') | |
| platform | No | Platform to search for LLM mentions | |
| filters | No | you can add several filters at once (8 filters maximum) you should set a logical operator and, or between the conditions the following operators are supported: regex, not_regex, <, <=, >, >=, =, <>, in, not_in, match, not_match, ilike, not_ilike, like, not_like you can use the % operator with like and not_like, as well as ilike and not_ilike to match any string of zero or more characters merge operator must be a string and connect two other arrays, availible values: or, and. example: ["ai_search_volume",">","1000"] The full list of possible filters is available in 'ai_optimization_llm_mentions_filters' tool | |
| order_by | No | resuresults sorting rules optional field you can use the same values as in the filters array to sort the results possible sorting types: asc – results will be sorted in the ascending order desc – results will be sorted in the descending order you should use a comma to set up a sorting type example: ["ai_search_volume,desc"] note that you can set no more than three sorting rules in a single request you should use a comma to separate several sorting rules example: ["ai_search_volume,desc"] The full list of possible orders is available in 'ai_optimization_llm_mentions_filters' tool | |
| limit | No | Number of results to return. Default is 10, maximum is 1000. |