How to Define Targets and Analyze Data in the LLM Mentions API
The LLM Mentions API transforms raw AI search data into actionable intelligence. By combining flexible targeting, structured metrics and source data, you can uncover where and how your brand or competitors are mentioned.
This guide lists the features available, explains how to configure and customize request parameters, and interpret API responses.
What you get with LLM Mentions API endpoints
The LLM Mentions API provides multiple endpoints, each serving a distinct purpose in analyzing visibility and performance in AI search results.
The Search endpoint provides mention data from AI searches, including:
- the full question and answer,
- lists of related sources (which the model cited or relied on in its final answer),
- search results (all web search outputs the model retrieved when looking up information, including duplicates and unused entries),
- AI search volume and monthly searches.
The Top Domains endpoint provides data on LLM mentions for the specified target (keywords and/or domains) grouped by the most frequently mentioned domains.
The Top Pages endpoint, similarly, provides insights for the specified target (keywords and/or domains), but grouped by the most frequently mentioned pages.
The Aggregated Metrics endpoint summarizes overall data for mentions of the target keywords and/or domains you specify. It is especially useful when you want to see the big picture, such as total impressions or most-cited domains, without reviewing each mention individually.
The Cross Aggregated Metrics endpoint is designed for side-by-side comparison of multiple targets in a single request. The request configuration is a bit more complex here than for the rest of the endpoints, but it is ideal for benchmarking brands, products, or competitors. To learn more about this comparison method and the endpoint specifics, refer to the Cross Aggregated Metrics article.
Configuring requests in Search, Top Domains, Top Pages, and Aggregated Metrics endpoints
Understanding the target array
Endpoints like Search, Top Domains, Top Pages, and Aggregated Metrics use a target array to define what mentions your request should find. You can specify up to 10 entities in it, but at least one is required. A single entity (object) can contain either a domain or a keyword, with optional additional parameters that help to refine which mentions to return in the results.
Example:
"target": [
{
"domain": "store.google.com",
"search_filter": "exclude",
"search_scope": [
"sources"
]
},
{
"keyword": "pixel 9",
"search_filter": "include",
"search_scope": [
"question"
],
"match_type": "partial_match"
}
]
Each target entity has its own rules.
1. Domain entity example
{
"domain": "store.google.com",
"search_filter": "exclude",
"search_scope": [
"sources"
]
}
Let’s explain the parameters here:
domain(required if you do not plan to use a keyword entity) allows you to include or exclude mentions from a specific website using the search_filter parameter (set to “include” by default).search_scopedefines where to look for mentions with the following options:sources– in the list of sources cited by the AI,search_results– in the source domains from the model’s background retrieval,any(default) – all contexts.
2. Keyword entity example
{
"keyword": "pixel 9",
"search_filter": "include",
"search_scope": [
"question"
],
"match_type": "partial_match"
}
In this case, your request will search for mentions with the specified keyword (when search_filter is set to include) or without it (if set to exclude). The search_scope defines where to look for keyword mentions:
question– look in user queries.answer– look in the AI-generated responses.any(default).
The match_type defines how the keyword is matched:
word_match(default) finds the keyword as a standalone term, even inside longer queries (e.g., “pixel” matches “pixel 9”, “google pixel 9 review”),partial_matchfinds substrings inside longer words (e.g., “pixel 9” matches “pixel 9a”, “pixel” matches “pixellab”).
Full request example for the Search endpoint
Let’s get mentions related to Google Pixel 9 phones appearing in questions that trigger Google AI Overview in English in the US. We’ll allow partial matches for keyword “Pixel 9,” so variations like “Pixel 9a” are also counted, but will exclude Google’s store from sources. To keep results meaningful, we’ll also limit them to three items, apply ordering by descending search volume, and filter out low-volume mentions ["ai_search_volume", ">", 1000]. See the full list of available filters here.
[
{
"language_name": "English",
"location_code": 2840,
"platform": "google",
"target": [
{
"keyword": "pixel 9",
"search_filter": "include",
"search_scope": [
"question"
],
"match_type": "partial_match"
},
{
"domain": "store.google.com",
"search_filter": "exclude",
"search_scope": [
"sources"
]
}
],
"limit": 3
"order_by": [
"ai_search_volume,desc"
],
"filters": [
[
"ai_search_volume",
">",
1000
]
]
}
]
Additional parameters
Besides the parameters in the request above, you can use a few more optional settings listed in the endpoint’s docs.
Also, several additional parameters are specific to the following endpoints.
Top Pages, Top Domains:
links_scopespecifies which links (fromsourcesorsearch_results) will be used to extract data,initial_dataset_filtersapplies filtering to compile a fitting dataset,items_list_limitsets the number of results to return in the items array.
Top Pages, Top Domains, Aggregated Metrics:
internal_list_limitsets the number of results to return in thesources_domainandsearch_results_domainarrays.
Interpreting the API response
The API will return a JSON response, where total_count shows the number of all mentions in our database fitting the request parameters, and the items array contains all the insights for analysis. This is where the endpoint compiles question–answer pairs derived from AI searches and the sources that support them.
{
"version": "0.1.20251006",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.2988 sec.",
"cost": 0.103,
"tasks_count": 1,
"tasks_error": 0,
"tasks": [
{
"id": "10081508-8284-0634-0000-5d8359a5605e",
"status_code": 20000,
"status_message": "Ok.",
"time": "0.2394 sec.",
"cost": 0.103,
"result_count": 1,
"path": [
"v3",
"ai_optimization",
"llm_mentions",
"search",
"live"
],
"data": {
"api": "ai_optimization",
"function": "search",
"language_name": "English",
"location_code": 2840,
"target": [
{
"domain": "store.google.com",
"search_filter": "exclude",
"search_scope": [
"sources"
]
},
{
"keyword": "pixel 9",
"search_filter": "include",
"search_scope": [
"question"
],
"match_type": "partial_match"
}
],
"platform": "google",
"filters": [
[
"ai_search_volume",
">",
1000
]
],
"order_by": [
"ai_search_volume,desc"
],
"offset": 0,
"limit": 3
},
"result": [
{
"total_count": 14,
"current_offset": 0,
"search_after_token": "eyJDdXJyZW50T2Zmc2V0IjozLCJSYXdSZXF1ZXN0Ijp7InRhcmdldCI6W3sidHlwZSI6ImRvbWFpbiIsImRvbWFpbiI6InN0b3JlLmdvb2dsZS5jb20iLCJzZWFyY2hfc2NvcGUiOlsic291cmNlcyJdLCJzZWFyY2hfdHlwZSI6ImV4Y2x1ZGUifSx7InR5cGUiOiJrZXl3b3JkIiwia2V5d29yZCI6InBpeGVsIDkiLCJzZWFyY2hfc2NvcGUiOlsicXVlc3Rpb24iXSwic2VhcmNoX3R5cGUiOiJpbmNsdWRlIiwiZW50cnlfdHlwZSI6InBhcnRpYWxfbWF0Y2gifV0sInBsYXRmb3JtIjoiZ29vZ2xlIiwibGFuZ3VhZ2UiOiJlbiIsImxvY2F0aW9uIjoyODQwLCJsaW1pdCI6Mywib2Zmc2V0IjowLCJvcmRlcl9ieSI6eyJvcmRlcl9maWVsZCI6ImFpX3NlYXJjaF92b2x1bWUiLCJvcmRlcl90eXBlIjoiZGVzYyJ9LCJxdWVyeSI6eyJmaWVsZCI6ImFpX3NlYXJjaF92b2x1bWUiLCJ0eXBlIjoiZ3QiLCJ2YWx1ZSI6MTAwMH0sInNlYXJjaF9hZnRlcl90b2tlbiI6bnVsbCwiYWlkIjo4Mjg0fSwiU2VhcmNoQWZ0ZXJEYXRhIjp7IlZlcnNpb24iOjEsIlNlYXJjaEFmdGVyVmFsdWVzIjp7ImFpX3NlYXJjaF92b2x1bWUiOjY2MDAsImhhc2giOjc4NzI3MjYyMDAyMzEyMDg3MDd9LCJUb2tlblJlYWxPZmZzZXQiOjB9fQ==",
"items_count": 3,
"items": [
{
"platform": "google",
"location_code": 2840,
"language_code": "en",
"question": "pixel 9 release date",
"answer": "The Google Pixel 9 was released on `August 22, 2024` , following its announcement on August 13, 2024, at the annual Made by Google event.The Pixel 9 and Pixel 9 Pro XL became available for pre-order on August 13, with all phones in the series becoming generally available on August 22.[[1]](https://en.wikipedia.org/wiki/Pixel_9#:~:text=Several%20also%20took%20note%20of,Pro%20Fold%2C%20in%2032%20countries.)[[2]](https://blog.google/products/pixel/google-pixel-9-pro-xl/#:~:text=Pre-order%20your%20phone%20today%20Pixel%209%2C%20Pixel,and%20our%20retail%20partners%20on%20August%2022.)[[3]](https://www.phonearena.com/pixel-9-release-date-price-upgrades)[[4]](https://en.wikipedia.org/wiki/Pixel_9_Pro_Fold#:~:text=5%20External%20links-,History,was%20released%20on%20September%204.)[[5]](https://www.t-mobile.com/cell-phone/google-pixel-9#:~:text=Google%20Pixel%209%20Quick%20Facts%20When%20was,be%20available%20for%20the%20Google%20Pixel%209?)\n\nKey dates:\n\n- **August 13, 2024:** Announcement of the Pixel 9 series[[1]](https://blog.google/products/pixel/google-pixel-9-pro-xl/#:~:text=Pre-order%20your%20phone%20today%20Pixel%209%2C%20Pixel,and%20our%20retail%20partners%20on%20August%2022.)[[2]](https://www.phonearena.com/pixel-9-release-date-price-upgrades)\n- **August 22, 2024:** General release date for the Pixel 9, Pixel 9 Pro, and Pixel 9 Pro XL[[1]](https://en.wikipedia.org/wiki/Pixel_9#:~:text=Several%20also%20took%20note%20of,Pro%20Fold%2C%20in%2032%20countries.)[[2]](https://blog.google/products/pixel/google-pixel-9-pro-xl/#:~:text=Pre-order%20your%20phone%20today%20Pixel%209%2C%20Pixel,and%20our%20retail%20partners%20on%20August%2022.)[[3]](https://www.androidauthority.com/google-pixel-9-3365966/#:~:text=Google%20Pixel%209%2C%20Pixel%209%20Pro%2C%20and%20Pixel%209%20Pro,you%20more%20options%20than%20ever.&text=The%20Google%20Pixel%208%20series,the%20Google%20Pixel%209%20series!)\n- **September 4, 2024:** Release date for the Pixel 9 Pro Fold[[1]](https://en.wikipedia.org/wiki/Pixel_9#:~:text=Several%20also%20took%20note%20of,Pro%20Fold%2C%20in%2032%20countries.)",
"sources": [
{
"snippet": "Several also took note of Google's usually frequent veiled attacks targeting Apple. All three phones became available for pre-orde...",
"source_name": "Wikipedia, the free encyclopedia",
"thumbnail": null,
"markdown": null,
"position": 1,
"title": "Pixel 9 - Wikipedia",
"domain": "en.wikipedia.org",
"url": "https://en.wikipedia.org/wiki/Pixel_9#:~:text=Several%20also%20took%20note%20of,Pro%20Fold%2C%20in%2032%20countries.",
"publication_date": null
},
{
"snippet": "Aug 13, 2024 — Pre-order your phone today Pixel 9, Pixel 9 Pro, and Pixel 9 Pro XL are all available for pre-order today starting at ...",
"source_name": "The Keyword",
"thumbnail": null,
"markdown": null,
"position": 2,
"title": "The new Pixel 9 phones bring you the best of Google AI",
"domain": "blog.google",
"url": "https://blog.google/products/pixel/google-pixel-9-pro-xl/#:~:text=Pre-order%20your%20phone%20today%20Pixel%209%2C%20Pixel,and%20our%20retail%20partners%20on%20August%2022.",
"publication_date": null
},
{
"snippet": "Apr 1, 2025 — Google Pixel 9, Pixel 9 Pro, and Pixel 9 Pro XL are here: Specs, price, colors, everything else! Google's 2024 flagship...",
"source_name": "Android Authority",
"thumbnail": null,
"markdown": null,
"position": 3,
"title": "Google Pixel 9, Pixel 9 Pro, Pixel 9 Pro XL are here - Android Authority",
"domain": "www.androidauthority.com",
"url": "https://www.androidauthority.com/google-pixel-9-3365966/#:~:text=Google%20Pixel%209%2C%20Pixel%209%20Pro%2C%20and%20Pixel%209%20Pro,you%20more%20options%20than%20ever.&text=The%20Google%20Pixel%208%20series,the%20Google%20Pixel%209%20series!",
"publication_date": null
},
{
"snippet": "Sep 2, 2024",
"source_name": "PhoneArena",
"thumbnail": null,
"markdown": null,
"position": 4,
"title": "Pixel 9 release date, price, specs, and must-know features",
"domain": "www.phonearena.com",
"url": "https://www.phonearena.com/pixel-9-release-date-price-upgrades",
"publication_date": null
},
{
"snippet": "History. In October 2023, 9to5Google reported that a second Android-powered foldable smartphone was in development at Google, code...",
"source_name": "Wikipedia",
"thumbnail": null,
"markdown": null,
"position": 5,
"title": "Pixel 9 Pro Fold - Wikipedia",
"domain": "en.wikipedia.org",
"url": "https://en.wikipedia.org/wiki/Pixel_9_Pro_Fold#:~:text=5%20External%20links-,History,was%20released%20on%20September%204.",
"publication_date": null
},
{
"snippet": "Google Pixel 9 Quick Facts When was the Google Pixel 9 released? The Pixel 9 was released on August 22, 2024. What colors will be ...",
"source_name": "T-Mobile",
"thumbnail": null,
"markdown": null,
"position": 6,
"title": "New Google Pixel 9: Deals, Prices, Colors & Specs - T-Mobile",
"domain": "www.t-mobile.com",
"url": "https://www.t-mobile.com/cell-phone/google-pixel-9#:~:text=Google%20Pixel%209%20Quick%20Facts%20When%20was,be%20available%20for%20the%20Google%20Pixel%209?",
"publication_date": null
}
],
"search_results": null,
"ai_search_volume": 12100,
"monthly_searches": [
{
"year": 2025,
"month": 6,
"search_volume": 3600
},
{
"year": 2025,
"month": 5,
"search_volume": 3600
},
{
"year": 2025,
"month": 4,
"search_volume": 4400
},
{
"year": 2025,
"month": 3,
"search_volume": 4400
},
{
"year": 2025,
"month": 2,
"search_volume": 3600
},
{
"year": 2025,
"month": 1,
"search_volume": 4400
},
{
"year": 2024,
"month": 12,
"search_volume": 4400
},
{
"year": 2024,
"month": 11,
"search_volume": 5400
},
{
"year": 2024,
"month": 10,
"search_volume": 5400
},
{
"year": 2024,
"month": 9,
"search_volume": 8100
},
{
"year": 2024,
"month": 8,
"search_volume": 60500
},
{
"year": 2024,
"month": 7,
"search_volume": 40500
}
]
},
{
"platform": "google",
"location_code": 2840,
"language_code": "en",
"question": "pixel 9 review",
"answer": "\nThe Google Pixel 9 is `a highly-rated smartphone praised for its excellent camera, smooth software experience, smart AI features like Gemini and Call Screen, and long-term software support`.While it offers improved battery life and performance compared to predecessors, potential drawbacks include inconsistent fingerprint sensor performance, a tendency for the glossy back to smudge, and non-flagship-level gaming performance and charging speeds.The Pixel 9 is ideal for users prioritizing photography, AI integration, and a clean Android interface over heavy gaming or ultra-fast charging. \n[[1]](https://www.droid-life.com/2024/08/28/pixel-9-review-yup-its-that-good/#:~:text=Pixel%209%20comes%20packing%20a,ultrawide%20lens%20with%20Macro%20Focus.)[[2]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[3]](https://www.youtube.com/watch?v=xLGkaIsheMQ&t=364)[[4]](https://www.tomsguide.com/phones/google-pixel-phones/google-pixel-9-review#:~:text=Tom's%20Guide%20Verdict,for%20many%20years%20to%20come.)[[5]](https://www.consumerreports.org/electronics-computers/cell-phones/google-pixel-9/m415209/)\n\nStrengths\n\n- [**Exceptional Camera:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Exceptional+Camera&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIigQQAw) The Pixel 9 features an upgraded ultrawide camera and a large aperture for excellent low-light performance.Its image processing is considered top-tier, producing detailed and high-quality photos.[[1]](https://www.droid-life.com/2024/08/28/pixel-9-review-yup-its-that-good/#:~:text=Pixel%209%20comes%20packing%20a,ultrawide%20lens%20with%20Macro%20Focus.)[[2]](https://www.youtube.com/watch?v=xLGkaIsheMQ&t=364)\n- [**Smart AI Features:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Smart+AI+Features&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUInwQQAw) Google's AI integration is a standout, with features like Gemini, accurate live transcription in the Recorder app, and Call Screen.[[1]](https://www.youtube.com/watch?v=2pudQRfSGP8&t=408)[[2]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)\n- [**Smooth User Experience:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Smooth+User+Experience&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIrAQQAw) The clean, polished Android UI is a favorite among reviewers, offering ease of use and a premium feel, according to [Moor Insights & Strategy](https://moorinsightsstrategy.com/pixel-9-review-perhaps-the-best-pixel-ever-made/).[[1]](https://www.sypnotix.com/reviews/google-pixel-9-review#:~:text=The%20Google%20Pixel%209%20is,now%20nearly%20at%20that%20level.)[[2]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[3]](https://www.forbes.com/sites/moorinsights/2024/10/10/pixel-9-review-perhaps-the-best-pixel-ever-made/#:~:text=Pixel%209%20Build%20Quality%20And,design%20that%20fits%20both%20phones.)[[4]](https://www.cnet.com/tech/mobile/google-pixel-9-review-chock-full-of-ai-but-thats-not-what-makes-it-great/#:~:text=Between%20the%20additional%20RAM%20%2812GB,battery%20during%20the%20same%20test.)[[5]](https://www.consumerreports.org/electronics-computers/cell-phones/google-pixel-9/m415209/)[[6]](https://mashable.com/review/pixel-10-pro#:~:text=The%20software%20offers%20one%20of%20my%20favorite,not%20just%20among%20my%20fellow%20tech-nerd%20friends.)\n- [**Long Software Support:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Long+Software+Support&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUInAQQAw) Google's commitment to 7 years of software updates means the Pixel 9 is a device built to last for many years, according to Tom's Guide.[[1]](https://www.tomsguide.com/phones/google-pixel-phones/google-pixel-9-review#:~:text=Tom's%20Guide%20Verdict,for%20many%20years%20to%20come.)\n- [**Improved Battery Life:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Improved+Battery+Life&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIngQQAw) The Pixel 9 shows a significant leap in battery performance, comfortably lasting through a busy day of use.[[1]](https://www.tomsguide.com/phones/google-pixel-phones/google-pixel-9-review#:~:text=Tom's%20Guide%20Verdict,for%20many%20years%20to%20come.)[[2]](https://www.cnet.com/tech/mobile/google-pixel-9-review-chock-full-of-ai-but-thats-not-what-makes-it-great/#:~:text=Between%20the%20additional%20RAM%20%2812GB,battery%20during%20the%20same%20test.)\n\nWeaknesses\n\n- [**Inconsistent Fingerprint Sensor:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Inconsistent+Fingerprint+Sensor&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIrgQQAw) Some users reported the ultrasonic fingerprint sensor as inconsistent at times.[[1]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[2]](https://moorinsightsstrategy.com/pixel-9-review-perhaps-the-best-pixel-ever-made/#:~:text=The%20Pixel%209%20and%20Pixel%209%20Pro,opinion%2C%20more%20robust%20than%20an%20optical%20sensor.)\n- [**Smudge-Prone Design:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Smudge-Prone+Design&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIpgQQAw) The glossy back of the phone is prone to picking up smudges and fingerprints, requiring a case for a clean look.[[1]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[2]](https://www.youtube.com/watch?v=bWW9YJsc_LQ&t=55)\n- [**Gaming & Charging Performance:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=Gaming+%26+Charging+Performance&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUIkQQQAw) The Pixel 9 is not built for heavy gaming, and its charging speeds, while improved, are not considered cutting-edge or \"future-proof\".[[1]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[2]](https://www.cnet.com/tech/mobile/google-pixel-9-review-chock-full-of-ai-but-thats-not-what-makes-it-great/#:~:text=Between%20the%20additional%20RAM%20%2812GB,battery%20during%20the%20same%20test.)\n- [**No Telephoto Lens:** ](https://www.google.com/search?num=100&sca_esv=452a92eb2c2ade68&hl=en&gl=US&glp=1&q=No+Telephoto+Lens&sa=X&ved=2ahUKEwiC4LP1nr2PAxU6lmoFHTDeN1wQxccNegUI_wMQAw) A significant omission, especially when compared to its Pro counterpart, is the lack of a dedicated telephoto lens, which limits optical zoom capabilities.[[1]](https://www.droid-life.com/2024/08/28/pixel-9-review-yup-its-that-good/#:~:text=Pixel%209%20comes%20packing%20a,ultrawide%20lens%20with%20Macro%20Focus.)\n\nWho is it for?\n\nThe Pixel 9 is best suited for users who:[[1]](https://www.consumerreports.org/electronics-computers/cell-phones/google-pixel-9/m415209/)\n\n- Are passionate about photography and want reliable, high-quality photos.[[1]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[2]](https://www.youtube.com/watch?v=xLGkaIsheMQ&t=364)[[3]](https://www.bestbuy.com/site/reviews/google-pixel-9-pro-256gb-unlocked-obsidian/6587890#:~:text=Excellent%20video%20recording%2C%20portrait%20mode%2C%20and%20fast,worthwhile%20investment.%20A%20must-have%20for%20photography%20enthusiasts!)[[4]](https://www.telstra.com.au/mobile-phones/mobiles-on-a-plan/google/pixel-9)\n- Appreciate cutting-edge AI features and seamless integration with them.[[1]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)[[2]](https://www.pcmag.com/deals/limited-time-deal-save-20-on-the-powerful-google-pixel-9-smartphone#:~:text=PCMag%20%28%20PC%20Magazine%20%29%20's%20expert%2C,does%20it%20all%20and%20does%20it%20well.)\n- Prefer a minimalist, clean, and polished Android experience.[[1]](https://www.youtube.com/watch?v=2pudQRfSGP8&t=408)[[2]](https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735)\n- Want a phone with a premium feel that will receive long-term software support.[[1]](https://www.forbes.com/sites/moorinsights/2024/10/10/pixel-9-review-perhaps-the-best-pixel-ever-made/#:~:text=Pixel%209%20Build%20Quality%20And,design%20that%20fits%20both%20phones.)[[2]](https://www.tomsguide.com/phones/google-pixel-phones/google-pixel-9-review#:~:text=Tom's%20Guide%20Verdict,for%20many%20years%20to%20come.)",
"sources": [
{
"snippet": "Jan 29, 2025 — The Google Pixel 9 is as close to the ideal Android iPhone experience as one can fathom right now. If Apple phones are...",
"source_name": "Sypnotix",
"thumbnail": null,
"markdown": null,
"position": 1,
"title": "Google Pixel 9 Review - Sypnotix",
"domain": "www.sypnotix.com",
"url": "https://www.sypnotix.com/reviews/google-pixel-9-review#:~:text=The%20Google%20Pixel%209%20is,now%20nearly%20at%20that%20level.",
"publication_date": null
},
{
"snippet": "Aug 28, 2024 — Pixel 9 comes packing a 4,700mAh battery, with charging specs listed as 27W max speed when using Google's 45W Type-C c...",
"source_name": "Droid Life",
"thumbnail": null,
"markdown": null,
"position": 2,
"title": "Pixel 9 Review: Yup, It's That Good - Droid Life",
"domain": "www.droid-life.com",
"url": "https://www.droid-life.com/2024/08/28/pixel-9-review-yup-its-that-good/#:~:text=Pixel%209%20comes%20packing%20a,ultrawide%20lens%20with%20Macro%20Focus.",
"publication_date": null
},
{
"snippet": "Aug 8, 2025 — definitely struggles and it can be pretty bad but sometimes I kind of don't mind the odd occasion. where this isn't gre...",
"source_name": "YouTube ·",
"thumbnail": null,
"markdown": null,
"position": 3,
"title": "Pixel 9 Pro XL One Year Later REVIEW | HONEST verdict after 12 ...",
"domain": "www.youtube.com",
"url": "https://www.youtube.com/watch?v=2pudQRfSGP8&t=408",
"publication_date": null
},
{
"snippet": "Jul 16, 2025 — so there's no weird quirks here the Pixel 9 handles your day-to-day basics like calls. and typing just as well if not ...",
"source_name": "YouTube ·",
"thumbnail": null,
"markdown": null,
"position": 4,
"title": "Pixel 9: 10 Months Later - I Was VERY Wrong! (HONEST Review)",
"domain": "www.youtube.com",
"url": "https://www.youtube.com/watch?v=Ssp74UwQh_8&t=735",
"publication_date": null
},
{
"snippet": "Oct 10, 2024 — Pixel 9 Build Quality And Design. The Pixel 9 looks and feels premium. Nobody will ever mistake it for an iPhone, at l...",
"source_name": "Forbes",
"thumbnail": null,
"markdown": null,
"position": 5,
"title": "Pixel 9 Review: Perhaps The Best Pixel Ever Made - Forbes",
"domain": "www.forbes.com",
"url": "https://www.forbes.com/sites/moorinsights/2024/10/10/pixel-9-review-perhaps-the-best-pixel-ever-made/#:~:text=Pixel%209%20Build%20Quality%20And,design%20that%20fits%20both%20phones.",
"publication_date": null
},
{
"snippet": "Feb 18, 2025 — and text messages into real time gemini Live for having real-time conversations with your phone i did a video about th...",
"source_name": "YouTube ·",
"thumbnail": null,
"markdown": null,
"position": 6,
"title": "Google Pixel 9 After 6 Months....Why Buy 'PRO'? HONEST Review",
"domain": "www.youtube.com",
"url": "https://www.youtube.com/watch?v=xLGkaIsheMQ&t=364",
"publication_date": null
},
{
"snippet": "Aug 11, 2025 — in this video is going to be of the new Pixel 9a that I bought I wanted to get this in straight away because the first...",
"source_name": "YouTube ·",
"thumbnail": null,
"markdown": null,
"position": 7,
"title": "Google Pixel 9a - Long Term, REAL WORLD Review!",
"domain": "www.youtube.com",
"url": "https://www.youtube.com/watch?v=bWW9YJsc_LQ&t=55",
"publication_date": null
},
{
"snippet": "Aug 21, 2024 — Tom's Guide Verdict The Google Pixel 9 falls into a few of the usual pitfalls for Google's phones, chiefly weak perfor...",
"source_name": "Tom's Guide",
"thumbnail": null,
"markdown": null,
"position": 8,
"title": "Google Pixel 9 review: Great cameras, longer battery life - Tom's Guide",
"domain": "www.tomsguide.com",
"url": "https://www.tomsguide.com/phones/google-pixel-phones/google-pixel-9-review#:~:text=Tom's%20Guide%20Verdict,for%20many%20years%20to%20come.",
"publication_date": null
},
{
"snippet": "Aug 21, 2024 — Between the additional RAM (12GB compared with the Pixel 8's 8GB), 120Hz refresh rate display and Tensor G4, everythin...",
"source_name": "CNET",
"thumbnail": null,
"markdown": null,
"position": 9,
"title": "Google Pixel 9 Review: Chock-Full of AI. But That's Not What Makes ...",
"domain": "www.cnet.com",
"url": "https://www.cnet.com/tech/mobile/google-pixel-9-review-chock-full-of-ai-but-thats-not-what-makes-it-great/#:~:text=Between%20the%20additional%20RAM%20(12GB,battery%20during%20the%20same%20test.",
"publication_date": null
},
{
"snippet": "The Pixel 9 and Pixel 9 Pro are the perfect size in my hand, and I could absolutely see the Pixel 9 Pro as the perfect phone for m...",
"source_name": "Moor Insights & Strategy",
"thumbnail": null,
"markdown": null,
"position": 10,
"title": "Pixel 9 Review: Perhaps The Best Pixel Ever Made",
"domain": "moorinsightsstrategy.com",
"url": "https://moorinsightsstrategy.com/pixel-9-review-perhaps-the-best-pixel-ever-made/#:~:text=The%20Pixel%209%20and%20Pixel%209%20Pro,opinion%2C%20more%20robust%20than%20an%20optical%20sensor.",
"publication_date": null
},
{
"snippet": "PERFORMANCE: Overall the Google Pixel 9 was very good. Its quickness, battery life, and camera quality will satisfy all but the mo...",
"source_name": "Consumer Reports",
"thumbnail": null,
"markdown": null,
"position": 11,
"title": "Google Pixel 9 Cell Phone Review - Consumer Reports",
"domain": "www.consumerreports.org",
"url": "https://www.consumerreports.org/electronics-computers/cell-phones/google-pixel-9/m415209/",
"publication_date": null
},
{
"snippet": "Excellent video recording, portrait mode, and fast autofocus add to its ( Google's Pixel 9 Pro ) prowess. While battery life and d...",
"source_name": "Best Buy",
"thumbnail": null,
"markdown": null,
"position": 12,
"title": "Customer Reviews: Google Pixel 9 Pro 256GB (Unlocked) Obsidian GA05945-US",
"domain": "www.bestbuy.com",
"url": "https://www.bestbuy.com/site/reviews/google-pixel-9-pro-256gb-unlocked-obsidian/6587890#:~:text=Excellent%20video%20recording%2C%20portrait%20mode%2C%20and%20fast,worthwhile%20investment.%20A%20must-have%20for%20photography%20enthusiasts!",
"publication_date": null
},
{
"snippet": "Dec 5, 2024 — PCMag ( PC Magazine ) 's expert, Iyaz Akhtar, in his review calls the Pixel 9 ( Google Pixel 9 ) “a refined powerhouse,",
"source_name": "PCMag",
"thumbnail": null,
"markdown": null,
"position": 13,
"title": "Limited Time Deal: Save 20% on the Powerful Google Pixel 9 Smartphone",
"domain": "www.pcmag.com",
"url": "https://www.pcmag.com/deals/limited-time-deal-save-20-on-the-powerful-google-pixel-9-smartphone#:~:text=PCMag%20(%20PC%20Magazine%20)%20's%20expert%2C,does%20it%20all%20and%20does%20it%20well.",
"publication_date": null
},
{
"snippet": "The phone is very easy to use, and the setup process was quick. The storage of 128GB is good for saving photos, apps, and videos.",
"source_name": "Telstra Personal",
"thumbnail": null,
"markdown": null,
"position": 14,
"title": "Google Pixel 9 - Buy Now",
"domain": "www.telstra.com.au",
"url": "https://www.telstra.com.au/mobile-phones/mobiles-on-a-plan/google/pixel-9",
"publication_date": null
},
{
"snippet": "7 days ago — The software offers one of my favorite user interfaces in the Android world, and it comes with a ton of goodies to play ...",
"source_name": "Mashable",
"thumbnail": null,
"markdown": null,
"position": 15,
"title": "Pixel 10 Pro review: Worth the upgrade but with a few caveats",
"domain": "mashable.com",
"url": "https://mashable.com/review/pixel-10-pro#:~:text=The%20software%20offers%20one%20of%20my%20favorite,not%20just%20among%20my%20fellow%20tech-nerd%20friends.",
"publication_date": null
}
],
"search_results": null,
"ai_search_volume": 6600,
"monthly_searches": [
{
"year": 2025,
"month": 7,
"search_volume": 3600
},
{
"year": 2025,
"month": 6,
"search_volume": 3600
},
{
"year": 2025,
"month": 5,
"search_volume": 2900
},
{
"year": 2025,
"month": 4,
"search_volume": 4400
},
{
"year": 2025,
"month": 3,
"search_volume": 3600
},
{
"year": 2025,
"month": 2,
"search_volume": 3600
},
{
"year": 2025,
"month": 1,
"search_volume": 4400
},
{
"year": 2024,
"month": 12,
"search_volume": 6600
},
{
"year": 2024,
"month": 11,
"search_volume": 9900
},
{
"year": 2024,
"month": 10,
"search_volume": 5400
},
{
"year": 2024,
"month": 9,
"search_volume": 9900
},
{
"year": 2024,
"month": 8,
"search_volume": 27100
}
]
},
{
"platform": "google",
"location_code": 2840,
"language_code": "en",
"question": "pixel 9a release date",
"answer": "\nThe Google Pixel 9a was initially announced around March 2025 and officially launched on `April 10, 2025` , in the United States, Canada, and the United Kingdom, with releases in other regions following shortly after in April. \n[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)[[2]](https://blog.google/products/pixel/google-pixel-9a/#:~:text=Pixel%209a%20starts%20at%20$499%20and%20will,in%20the%20US%2C%20Canada%2C%20and%20the%20UK.)[[3]](https://blog.google/products/pixel/google-pixel-9a-available-now/#:~:text=Pixel%209a%20is%20available%20now.%20*%20Product%20news.%20*%20Company%20news.)\n\nKey Details:\n\n- **Launch Date:** April 10, 2025, for the US, Canada, and UK.[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)[[2]](https://blog.google/products/pixel/google-pixel-9a/#:~:text=Pixel%209a%20starts%20at%20$499%20and%20will,in%20the%20US%2C%20Canada%2C%20and%20the%20UK.)\n- **Regional Rollout:** \n\t- **April 10:** US, Canada, UK.[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)[[2]](https://blog.google/products/pixel/google-pixel-9a/#:~:text=Pixel%209a%20starts%20at%20$499%20and%20will,in%20the%20US%2C%20Canada%2C%20and%20the%20UK.)\n\t- **April 14:** Europe (Germany, Spain, Italy, France, etc.).[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)[[2]](https://www.cnet.com/news-live/google-pixel-9a-live-updates-specs-price-release-date/#:~:text=Pixel%209A%20gets%20its%20release%20date&text=Just%20over%20a%20week%20after,for%20demand%20in%20that%20country.)\n\t- **April 16:** Australia, India, Singapore, Taiwan, and Malaysia.[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)\n\t- **Coming Soon:** Japan.[[1]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)[[2]](https://www.cnet.com/news-live/google-pixel-9a-live-updates-specs-price-release-date/#:~:text=Pixel%209A%20gets%20its%20release%20date&text=Just%20over%20a%20week%20after,for%20demand%20in%20that%20country.)\n- **Announcement:** The phone was announced in March 2025 after a previous delay due to a component quality issue.[[1]](https://www.phonearena.com/pixel-9a-release-date-price-features-news)[[2]](https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.)\n- **Availability:** The Pixel 9a is now available for purchase through the Google Store and its retail partners.[[1]](https://blog.google/products/pixel/google-pixel-9a/#:~:text=Pixel%209a%20starts%20at%20$499%20and%20will,in%20the%20US%2C%20Canada%2C%20and%20the%20UK.)[[2]](https://blog.google/products/pixel/google-pixel-9a-available-now/#:~:text=Pixel%209a%20is%20available%20now.%20*%20Product%20news.%20*%20Company%20news.)",
"sources": [
{
"snippet": "Apr 4, 2025",
"source_name": "PhoneArena",
"thumbnail": null,
"markdown": null,
"position": 1,
"title": "Pixel 9a release date, price, specs, and must-know features",
"domain": "www.phonearena.com",
"url": "https://www.phonearena.com/pixel-9a-release-date-price-features-news",
"publication_date": null
},
{
"snippet": "Mar 28, 2025 — Google has sorted out its Pixel problems and will begin the 9a rollout on April 10. Ryan Whitwam – Mar 28, 2025 9:50 A...",
"source_name": "Ars Technica",
"thumbnail": null,
"markdown": null,
"position": 2,
"title": "Google solves its mysterious Pixel problem, announces 9a launch date",
"domain": "arstechnica.com",
"url": "https://arstechnica.com/gadgets/2025/03/google-confirms-pixel-9a-launch-for-april-10/#:~:text=Google%20has%20sorted%20out%20its,with%20the%20previous%20component%20issue.",
"publication_date": null
},
{
"snippet": "Mar 19, 2025 — Pixel 9a starts at $499 and will be available at the Google Store and through our retail partners starting April 10th ...",
"source_name": "The Keyword",
"thumbnail": null,
"markdown": null,
"position": 3,
"title": "Pixel 9a: The latest A-series phone with Google AI smarts at an ...",
"domain": "blog.google",
"url": "https://blog.google/products/pixel/google-pixel-9a/#:~:text=Pixel%209a%20starts%20at%20$499%20and%20will,in%20the%20US%2C%20Canada%2C%20and%20the%20UK.",
"publication_date": null
},
{
"snippet": "Mar 28, 2025 — Pixel 9A gets its release date ... Just over a week after the phone's announcement, Google's Pixel 9A now has its rele...",
"source_name": "CNET",
"thumbnail": null,
"markdown": null,
"position": 4,
"title": "Google Pixel 9A Live Updates: Specs, Price, Release Date - CNET",
"domain": "www.cnet.com",
"url": "https://www.cnet.com/news-live/google-pixel-9a-live-updates-specs-price-release-date/#:~:text=Pixel%209A%20gets%20its%20release%20date&text=Just%20over%20a%20week%20after,for%20demand%20in%20that%20country.",
"publication_date": null
},
{
"snippet": "Apr 10, 2025 — Pixel 9a is available now. * Product news. * Company news.",
"source_name": "The Keyword",
"thumbnail": null,
"markdown": null,
"position": 5,
"title": "Pixel 9a is available now. - The Keyword",
"domain": "blog.google",
"url": "https://blog.google/products/pixel/google-pixel-9a-available-now/#:~:text=Pixel%209a%20is%20available%20now.%20*%20Product%20news.%20*%20Company%20news.",
"publication_date": null
}
],
"search_results": null,
"ai_search_volume": 6600,
"monthly_searches": [
{
"year": 2025,
"month": 6,
"search_volume": 2900
},
{
"year": 2025,
"month": 5,
"search_volume": 3600
},
{
"year": 2025,
"month": 4,
"search_volume": 18100
},
{
"year": 2025,
"month": 3,
"search_volume": 27100
},
{
"year": 2025,
"month": 2,
"search_volume": 8100
},
{
"year": 2025,
"month": 1,
"search_volume": 6600
},
{
"year": 2024,
"month": 12,
"search_volume": 3600
},
{
"year": 2024,
"month": 11,
"search_volume": 2900
},
{
"year": 2024,
"month": 10,
"search_volume": 2900
},
{
"year": 2024,
"month": 9,
"search_volume": 2400
},
{
"year": 2024,
"month": 8,
"search_volume": 1600
},
{
"year": 2024,
"month": 7,
"search_volume": 590
}
]
}
]
}
]
}
]
}
Each item represents a specific mention cluster, for instance, for “pixel 9 release date,” “pixel 9 review,” or “pixel 9a release date.” These items include data on platform, location, and language for which the data was collected, followed by the question and answer pair, and the sources the AI model used to generate the answer. The sources section shows which domains or publishers the model sees most authoritative for those discussions. The search_results field, when available, expands on background evidence the model retrieved but did not cite directly.
The ai_search_volume metric estimates how often that query appears across AI searches. Meanwhile, monthly_searches tracks these trends over time, showing month-by-month search volume fluctuations, revealing seasonality and interest spikes.
By analyzing these items, you can understand what users are most curious about, which domains hold influence and get cited by AI assistants, and when user attention peaks.
Wrap up
The LLM Mentions API will help you uncover the questions users ask, the answers AI systems generate, and the sources they trust most. With precise and flexible targeting and filtering, you can build a reliable system for brand monitoring and competitor research in the AI search landscape. Check our docs and try making your first request.