Ask ChatGPT, Perplexity, or Google's AI Overviews a real question and you get one synthesized answer with a few citations, not a page of ten blue links. For anyone who publishes on the web, the goal shifts from ranking on a results page to being one of the three to five sources the model actually quotes. If your page is not in that set, you do not exist in the answer.

The useful part for developers is that this is not magic. Under the hood it is a retrieval and ranking pipeline you can reason about, and once you see its shape the optimization work becomes concrete. Here is how the three main engines pick their sources, and what that implies for the pages you ship.

The shared shape: retrieve, rank, extract, cite

Every one of these engines runs some version of retrieval-augmented generation. For a query that needs current information, the system interprets the query (often expanding it into several sub-queries), retrieves a candidate set of pages (usually ten to thirty), reranks that set with its own signals, then reads the survivors and writes an answer that cites only a handful.

The discard rate is steep. One analysis of roughly 15,000 prompts by AirOps found ChatGPT cites only about 15 percent of the pages it pulls in; the other 85 percent are retrieved, evaluated, and dropped without ever surfacing. Perplexity typically reads around ten candidates and cites three to five. So there are two separate battles: getting retrieved at all, then being clear and trustworthy enough to survive the rerank.