Google Preferred Sources: The New AEO Lever Nobody's Using Yet
Here's a quiet shift that most marketing teams haven't acted on yet. In late May 2026, Google rolled Preferred Sources into AI Overviews and AI Mode — not just Top Stories, where the feature first lived. Translation: a reader can now tell Google "show me this site more often," and Google will actually surface you inside the AI answer itself.
The numbers make it worth your attention. Google says people are about twice as likely to click through to a site they've set as a Preferred Source, and more than 345,000 unique sources have already been picked. In a world where roughly 60% of searches end without a click, doubling your odds on the clicks that do happen is not a small thing.
And almost nobody is optimizing for it. That's the opportunity.
What Preferred Sources actually are
Preferred Sources is a personalization setting. A searcher visits google.com/preferences/source, searches for sites they trust, and stars them. From then on, when those sites have relevant, fresh content, Google gives them prominent placement in that user's results — including inside AI Overviews and AI Mode answers.
Two things make this different from classic SEO:
- It's a person choosing you, not an algorithm guessing. Once a reader opts in, you have a standing invitation to appear in their results.
- It bypasses the usual ranking fight. A Preferred Source doesn't have to out-rank everyone — it just has to publish something relevant and recent for that query.
Any site that publishes fresh content is eligible. There's no application, no fee, no whitelist to join.
Why it matters now
The backdrop is brutal for publishers. AI Overviews keep expanding, and the clicks keep shrinking. Independent studies put the zero-click rate around 60% overall — and far higher on queries that trigger an AI Overview. If you've watched your own traffic slide, you already know the feeling. (We dug into the measurement side in The Great Decoupling.)
Preferred Sources is one of the few mechanisms Google has shipped that pushes the other way — it deliberately gives chosen publishers more visibility inside the AI surfaces that are eating everyone else's clicks. It rewards the thing that's hard to fake: an audience that actively wants to hear from you.
Want to see who AI is citing today? The Google SERP API returns the AI Overview block, its source list, and Top Stories as clean JSON. 100 free quick-search calls on signup. See pricing →
You can't buy it — you earn it
Because a human has to choose you, the playbook is part SEO, part audience-building. The sites getting starred tend to share a few traits:
1. They publish consistently and recently. Preferred Sources rewards freshness. A site that posts weekly gives Google more chances to surface it than one that updates quarterly.
2. They have a distinct voice. People star sources they recognize. Generic, faceless content doesn't earn a deliberate opt-in.
3. They ask. This is the part most teams miss. Readers won't stumble onto the settings page on their own — you have to point them there.
The one-click deeplink trick
Google recommends giving readers a direct link that opens the source-preferences page with your site pre-filled, so opting in takes one tap. Treat it like a "follow" button: drop it next to your newsletter signup and social icons.
The pattern looks like this:
<!-- "Add us as a Preferred Source" button -->
<a href="https://www.google.com/preferences/source?q=yourdomain.com"
target="_blank" rel="noopener">
⭐ Add us as a Google Preferred Source
</a>
Then promote it the way you'd promote a newsletter: a line in your footer, a one-time banner, a sentence at the end of your best articles, a note to your email list. The readers who already love you are the easiest opt-ins you'll ever get — you just have to make the ask.
How to track if you're showing up
Optimization without measurement is guessing. The clean way to know whether your opt-in push is working is to watch the live results for your priority queries and check whether your domain appears in the AI Overview and Top Stories source lists.
A SERP API makes this a cron job instead of a manual chore. Pull the query, read results.aiOverview.sources, and flag your domain:
import os, requests
KEY = os.environ["SERPENT_API_KEY"]
ME = "yourdomain.com"
QUERIES = ["best project management software", "how to lower blood pressure"]
for q in QUERIES:
r = requests.get("https://apiserpent.com/api/search",
params={"q": q, "country": "us"},
headers={"X-API-Key": KEY}, timeout=90)
data = r.json().get("results", {})
aio = data.get("aiOverview") or {}
sources = [s.get("url", "") for s in aio.get("sources", [])]
cited = any(ME in u for u in sources)
print(f"{'✅' if cited else '— '} {q}: AIO sources = {len(sources)}, you cited = {cited}")
Run it weekly, log the result, and you'll see your share of AI-Overview citations move as the opt-ins accumulate. If you already track rankings, this slots straight into the same job — see our 100-line rank tracker for the scaffolding.
A 6-step action checklist
- Keep publishing fresh content. Freshness is the entry ticket. Aim for a steady cadence on your money topics.
- Add a "Preferred Source" button using the pre-filled deeplink, next to your social and newsletter CTAs.
- Ask your warmest audience first — email subscribers, repeat readers, community members. They convert best.
- Strengthen your entity signals so Google clearly understands who you are. (More on this in structured data for AI citations.)
- Track your AI-Overview citation share weekly with the script above.
- Double down on the queries where you're close — topics where you appear sometimes are the fastest to lock in.
Preferred Sources won't reverse the zero-click trend on its own. But it's a rare lever that points in your favor, it's free, and the field is wide open. The teams that ask their readers now will be the ones highlighted in AI answers while everyone else is still arguing about whether AEO is real.
FAQ
What are Google Preferred Sources?
A personalization setting that lets a searcher pick sites they want to see more of. Chosen sites get highlighted in that person's AI Overviews, AI Mode answers, and Top Stories. It's user-driven — you can't pay or apply.
How do I get added?
Publish fresh content readers value, then make opting in trivial with a one-click deeplink button, and ask your loyal audience to star you at google.com/preferences/source.
Does it really drive traffic?
Google reports people are roughly 2x more likely to click through to a Preferred Source. With ~60% of searches now ending without a click, a 2x lift on the surviving clicks is meaningful.
How do I know if it's working?
Track your priority queries with a SERP API, capture the AI Overview source list each week, and watch whether (and how often) your domain appears over time.
Track Your AI Visibility With Serpent
Pull AI Overviews, Top Stories, and full SERP source lists as clean JSON with the Google SERP API. 100 free quick-search calls on signup, no card.
Get Your Free API KeyExplore: Google SERP API · AI Rank API · Playground · Docs



