Google AI Overviews & SGE

Understand AI Overviews and how they change the search results page.

AI Overviews (evolved from the Search Generative Experience, SGE) are AI-generated answers shown at the top of many Google searches. They summarize information and link to cited sources.

What changes

  • Answers appear directly on the SERP, above traditional links.
  • Being cited in the overview becomes a new visibility goal.
  • Some informational queries may send fewer clicks ("zero-click").

How to earn citations

  • Answer questions clearly and concisely near the top of the page.
  • Demonstrate strong E-E-A-T and factual accuracy.
  • Use clean structure and structured data.
  • Cover the topic comprehensively so you are a reliable source.

Example

Example · html
<!-- Concise, quotable answers are more likely to be cited -->
<h2>What is the ideal pour over ratio?</h2>
<p>The ideal pour over coffee ratio is 1:16 - one gram of coffee
  to sixteen grams of water - which balances strength and clarity.</p>

When to use it

  • A health publisher restructures articles with a direct answer in the first paragraph after noticing Google AI Overviews consistently cite competitor pages that lead with concise summaries.
  • A SaaS blog formats step-by-step guides with numbered lists and short sentences so the AI Overview can extract an inline procedure snippet for 'how to' queries.
  • An SEO team monitors AI Overview citations for their target keywords using Search Console impression data to identify which pages are gaining or losing overview citations.

More examples

Answer-first paragraph structure

Placing a complete, concise answer in the first paragraph maximises the chance of the content being cited in a Google AI Overview for procedural queries.

Example · html
<article>
  <h1>How to Export a Google Analytics Report</h1>

  <!-- Direct answer in first 40-60 words — prime AI Overview snippet territory -->
  <p>
    To export a Google Analytics report: open <strong>Reports</strong>,
    select your desired report, click the <strong>Share</strong> icon,
    then choose <strong>Download file</strong> and select PDF or CSV.
    The file saves to your Downloads folder immediately.
  </p>

  <!-- Detailed how-to for users who scroll -->
  <h2>Step-by-Step Export Instructions</h2>
</article>

Structured how-to steps for AI extraction

Numbered ordered lists with bolded UI elements match the step-by-step format Google AI Overviews frequently extract and display for instructional queries.

Example · html
<!-- Numbered steps are consistently cited in AI Overviews -->
<ol>
  <li>Open Google Analytics and navigate to <strong>Reports</strong>.</li>
  <li>Select the report you want to export from the left sidebar.</li>
  <li>Click the <strong>Share this report</strong> icon (top-right).</li>
  <li>Choose <strong>Download file</strong> from the dropdown.</li>
  <li>Select <strong>PDF</strong> or <strong>CSV</strong> and click <strong>Download</strong>.</li>
</ol>

Monitor AI Overview impressions via GSC

Tracking query-level impression and position data before and after AI Overviews rolled out reveals which queries are shifting clicks toward overview citations.

Example · bash
# Search Console API: filter by AI Overview appearance type
curl -s -X POST \
  'https://searchconsole.googleapis.com/v1/sites/https%3A%2F%2Fexample.com/searchAnalytics/query' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "startDate": "2024-05-01",
    "endDate": "2024-05-31",
    "dimensions": ["query", "page"],
    "searchType": "web",
    "rowLimit": 50
  }' | python3 -m json.tool | grep -E 'keys|impressions|position' | head -40

Discussion

  • Be the first to comment on this lesson.