AnswerLine Sign in Start free

GEO · Fundamentals

How AI engines choose which sources to cite

Every grounded AI answer is built in two stages: the engine retrieves candidate pages, then the model writes an answer and cites the pages it used. Getting cited means winning both stages.

Stage 1: retrieval — the fan-out decides the candidate pool

When you ask ChatGPT “best CRM for agencies”, it doesn’t answer from memory alone. It fires one or more web searches — often reworded versions of your prompt plus related queries — and reads the results. This is the query fan-out.

The implication: the pages that can be cited are the pages that rank for the fan-out queries, not necessarily for your literal prompt. If the engine searches “agency crm reviews 2026” and your page doesn’t rank there, it was never a candidate.

You can see the fan-out directly: the monitor API returns searchQueries[] alongside the answer. Run your prompt set once and you’ll know exactly which searches feed your category’s answers.

Stage 2: selection — what the model prefers to cite

From the retrieved candidates, the model picks a small set to cite. Across the major engines, the patterns are consistent:

What varies by engine

Perplexity cites aggressively and shows its sources prominently. ChatGPT cites fewer pages and favors authoritative-looking explainers. Gemini leans on Google’s index and favors pages already strong in classic SERP features. The only reliable way to know your category’s pattern is to measure it per engine — the same prompt set run through each engine endpoint shows you exactly which sources each one picks.

The practical loop

  1. Run your prompts; collect sources[] per engine.
  2. Read the cited pages — note their format, depth, and what claim each makes.
  3. Publish or update pages that make a better, more specific claim for the same query.
  4. Re-run on a schedule. Citation share moves over weeks, not days.

Citation selection isn’t random, and it isn’t authority alone — it’s retrieval fit plus quotability. Both are measurable.

Try it on your own prompts

500 free credits a month, no card. One POST returns the answer, sources and citations as JSON.

Keep reading