Indexing

nounalso called search indexing or Google indexing

Definition

Indexing is the step in which a search engine processes a crawled page and stores it in its searchable database; only indexed pages can rank, or be retrieved for AI answers built on that index, and being crawled does not guarantee being indexed.

Updated 6 min read8 cited sources

On this page8 sections

Why it matters for founders and small teams

Every AI answer engine your buyers use retrieves from an index — Google’s, Bing’s, Brave’s, or one the engine built itself — so a page that isn’t indexed can’t be cited, however good it is. For a small team publishing steadily, checking indexing is the cheapest way to find out why a strong article is getting nothing, before rewriting a word of it.

How does indexing work?#

Indexing works in stages after a URL is discovered: the engine crawls the page, processes it — rendering it, reading the text, title and links, and grouping duplicates to pick a canonical — and then decides whether to store it in its index, the database it searches when someone asks a question.

  1. 1

    Discovery

    The engine learns the URL exists — from a link on a page it already knows, from a sitemap, or from a push such as IndexNow.

    Your lever: Link new pages from pages that already get crawled, and list them in your sitemap.

  2. 2

    Crawling

    A bot fetches the page, if robots.txt allows it and the server answers. Googlebot reads only the first 2 MB of the HTML.

    Your lever: Keep the page fast, unblocked and light.

  3. 3

    Processing

    Google renders JavaScript and analyzes the text, title and alt attributes; most AI crawlers skip rendering. Duplicates are clustered and one canonical is chosen.

    Your lever: Serve the main content in the HTML — see server-side rendering — and send one clear canonical tag.

  4. 4

    The index decision

    The page is stored, or it isn’t. Google: “Indexing isn’t guaranteed; not every page that Google processes will be indexed.” Low quality, noindex rules and duplication are the usual reasons.

    Your lever: Give every page a job no other page on your site already does.

  5. 5

    Serving

    Only indexed pages can rank, or be retrieved when an AI engine grounds an answer. For Google’s AI features the page must also be eligible to show a snippet.

None of it can be bought. Google says it “doesn’t accept payment to crawl a site more frequently, or rank it higher,” and “doesn’t guarantee that it will crawl, index, or serve your page” even when the page follows every guideline.

Why is my page not indexed?#

A page usually isn’t indexed for one of five reasons: crawlers can’t reach it, it carries a noindex, Google treats it as a duplicate of another URL, it adds too little unique value, or Google hasn’t got to it yet. Search Console’s Page indexing report says which one applies.

Page indexing statusWhat it meansWhat to do
Discovered - currently not indexedFound but not crawled yet; Google expected crawling to overload the siteCheck server speed and URL bloat; link the page from pages that get crawled
Crawled - currently not indexedCrawled and evaluated but not stored; it may be indexed laterImprove or merge the page — Google says there’s no need to resubmit
Duplicate, Google chose different canonical than userGoogle prefers another URL as the canonicalMake the pages distinct, or accept Google’s choice and link to it
URL marked ‘noindex’A noindex rule was foundRemove it if the page should rank
URL blocked by robots.txtCrawling is disallowedAllow it if the page matters; a blocked URL can still be indexed without its content
Soft 404Returns 200 but looks like an error pageReturn a real 404 or 410, or add real content

Google adds that you “should not expect all URLs on your site to be indexed, only the canonical pages” — so a report full of alternates, redirects and parameter URLs is normal. Focus on the pages you’d be upset to lose, and on patterns: a whole template stuck in one status is a site problem, not a page problem. If the pattern is URL bloat, see crawl budget.

Rankbox framework

The Four-Index Check

AI answers draw on four families of index, and a page can be in one and missing from another. Check each key page against all four, in this order: the first failure tells you which engines can’t cite it and what to fix.

  1. 01

    Google — AI Overviews, AI Mode, Gemini

    Test: URL Inspection reports the URL is on Google, the Google-selected canonical is yours, and the page carries no nosnippet. Fix noindex, duplicates and thin content here first.

  2. 02

    Bing — Copilot, and ChatGPT's Bing path

    Test: Bing Webmaster Tools shows the URL indexed. Submit your sitemap there and turn on IndexNow so changes reach Bing quickly.

  3. 03

    Brave — Claude's search

    Test: search the page’s title on search.brave.com. Brave’s crawler follows Googlebot’s robots rules, so fix Google access first, then earn links from sites Brave already knows.

  4. 04

    Engines' own crawlers — Perplexity and OpenAI

    Test: your server logs show PerplexityBot and OAI-SearchBot fetching the page with a 200, and curl with their user agents returns the full text.

How to use it: Score each index pass or fail for your ten most important pages. A page that passes Google but fails Bing is missing from Copilot and from one of ChatGPT’s paths; a page that fails Brave is missing from Claude’s search — and each failure has a different fix.

Free to use and adapt. If you cite it, link to rankbox.xyz/glossary/indexing.

How do you check if a page is indexed?#

Check indexing with each engine’s own tools: URL Inspection in Google Search Console shows whether a URL is on Google and which canonical Google chose, and Bing Webmaster Tools does the same job for Bing. A site: search is only a rough spot check, not a complete list.

  1. Google: URL Inspection in Search Console shows the indexing status, the Google-selected canonical and the rendered HTML, and its live test shows what Googlebot gets right now. Request indexing there for your most important URLs; it’s rate-limited.
  2. Bing: verify the site in Bing Webmaster Tools, inspect key URLs and submit your sitemap. Bing’s index feeds Copilot, and Microsoft is a named ChatGPT search provider.
  3. Brave: there’s no console. Search your page title on search.brave.com, and after big changes use the re-fetch form at search.brave.com/submit-url, which asks Brave to re-crawl a page without guaranteeing it.
  4. Perplexity: no console and no submission. Discovery runs through its own crawler and links from sites it already trusts.
bash
# Status code and any X-Robots-Tag header
curl -sI https://www.example.com/blog/launch-checklist | grep -i -E "^HTTP|x-robots-tag"
 
# A stray robots meta tag in the HTML (a leftover staging noindex is common)
curl -s https://www.example.com/blog/launch-checklist | grep -i -o '<meta[^>]*robots[^>]*>'
 
# Google spot check, incomplete by design:
# site:example.com/blog/launch-checklist

Indexing is the entry ticket to AI search: AI Overviews, AI Mode and Gemini ground answers in Google’s index, ChatGPT draws on Bing and OpenAI’s own index, Claude on Brave’s and Perplexity on its own — so a page missing from an engine’s index can’t be cited by that engine.

AI engineIndex it retrieves fromYour way in
AI Overviews and AI ModeGoogle’s Search indexIndexed, snippet-eligible, and set to Include in Search Console’s Search generative AI setting
Gemini appGoogle’s Search indexIndexed, with Google-Extended not disallowed
ChatGPT searchBing, a named provider, plus OpenAI’s own indexIndexed in Bing, with OAI-SearchBot allowed
Microsoft CopilotBingIndexed in Bing; IndexNow speeds up changes
ClaudeBrave SearchCrawlable by Googlebot, whose rules Brave’s crawler follows, and ranking in Brave
PerplexityIts own index of 200B+ URLsPerplexityBot allowed and server-rendered HTML

Being indexed isn’t the same as being cited. In Ahrefs’ March 2026 data only 37.9% of pages cited in AI Overviews ranked in the top 10 for the typed query, because the engine retrieved them for narrower fan-out sub-queries. But every one of those pages had to be in the index first: retrieval-augmented generation can only retrieve what’s stored.

Common mistakes with indexing#

The most common indexing mistakes are blocking a page in robots.txt to keep it out of the index, leaving a staging noindex in place after launch, resubmitting pages Google has already crawled and declined, and publishing near-identical pages that get folded into one.

Myth

robots.txt keeps a page out of the index.

Reality

It stops crawling, not indexing. Google can index a blocked URL without its content — use noindex, and let the crawler in to see it.

Myth

Requesting indexing again and again forces a page in.

Reality

For “Crawled - currently not indexed,” Google says there’s “no need to resubmit.” Improve the page, or merge it into a stronger one.

Myth

Every URL on my site should be indexed.

Reality

Google expects only canonical pages to be indexed. Alternates, redirects and parameter URLs showing as not indexed is normal.

Myth

If Google indexed it, every AI engine can use it.

Reality

ChatGPT leans on Bing and OpenAI’s own index, Claude on Brave and Perplexity on its own crawler. Check the index each engine actually uses.

Sources

  1. 1.In-depth guide to how Google Search worksGoogle Search Central · developers.google.com
  2. 2.Page indexing reportSearch Console Help · support.google.com
  3. 3.URL Inspection toolSearch Console Help · support.google.com
  4. 4.AI features and your websiteGoogle Search Central · developers.google.com
  5. 5.Brave Search crawlerBrave · search.brave.com
  6. 6.ChatGPT searchOpenAI Help Center · help.openai.com
  7. 7.Architecting and evaluating an AI-first search APIPerplexity Research · research.perplexity.ai
  8. 8.How many AI Overview citations rank in the top 10?Ahrefs · ahrefs.com

Know someone who’d find this useful? Send it their way.

Written by

Rankbox Team

The team behind Rankbox. We study how ChatGPT, Perplexity, Gemini, and Google AI Overviews choose their sources, and publish what we learn so you can put it to work.

See which AI answers cite you today

Enter your site to see how often ChatGPT, Perplexity, Gemini, and Google cite your brand, and exactly what to publish next.

No credit card required · Free 7-day trial