Skip to content

Google

Why is my site not showing up in AI Overviews?

Short answer

AI Overviews are built on Google's ordinary index, so the usual causes are ordinary: the page is not indexed, it does not rank for that query, its content is not in the server-rendered HTML, or a snippet directive is preventing use. Google-Extended does not control AI Overviews — that is the most common false lead.

By The EchoVerse teamUpdated 4 min read

Work through these in order

1. Is the page indexed at all? Check the URL Inspection tool in Search Console. An unindexed page cannot appear anywhere, and this rules out the whole category of retrieval-shaped explanations before you spend time on them.

2. Do you rank for the query in ordinary results? AI Overviews draw on the same index as classic search. If you are not visible on page one for a query, appearing in its overview is unlikely. Fix the ranking problem first — the overview problem is often downstream of it.

3. Is your content in the served HTML? View source and search for a sentence from your body copy. If it is missing, the content only exists after JavaScript executes. Google can render JavaScript, but rendering is deferred and not guaranteed, and anything depending on it is at a structural disadvantage.

4. Are you suppressing snippets? These directives limit or prevent snippet use, and overviews are built from extracted content:


<meta name="robots" content="nosnippet">
<meta name="robots" content="max-snippet:0">

A max-snippet value set very low has the same practical effect. Check for these sitewide — they are often inherited from a template nobody has read in years.

5. Does the query even trigger an overview? Not all do, and which ones do changes over time. Check the query in a clean session before concluding you were excluded from something that was never shown.

The false lead worth naming

Google-Extended does not control AI Overviews. It governs whether your content is used to train Gemini models. Blocking it does not remove you from overviews, and unblocking it does not get you in. If someone has told you otherwise, that is the misconception to correct first.

What actually helps

The same structural work that helps every retrieval system:

  • A direct answer within the first 80 words under each heading
  • Headings phrased the way people ask, rather than as one-word labels
  • Self-contained paragraphs that survive being read out of context
  • Claims that are attributable, with a source and a date
  • Content present in the HTML without requiring script execution

What to accept

Appearing in an overview is not fully controllable, and it can reduce clicks even when you are cited, because the user's question has been answered in place. That trade-off is real. Optimising for it makes sense when the citation carries brand value or when the underlying query is commercially significant enough that presence matters more than the click.

Common questions

Does blocking Google-Extended remove me from AI Overviews?
No. Google-Extended governs whether your content is used for Gemini model training. AI Overviews are built from Google's ordinary index and are governed by normal Googlebot access and your snippet settings.
Can I opt out of AI Overviews specifically?
There is no dedicated opt-out. Snippet controls such as nosnippet and max-snippet limit how your content can be extracted, but they also restrict ordinary search snippets, so the cost is broader than the AI Overview itself.
Do I need to rank on page one to appear in an overview?
Not strictly, but overviews draw on the same index, and pages already visible for a query are far more likely to be used. If you do not rank at all, treat that as the problem to solve first.