SEO Glossary

Indexability

Indexability is the property of a URL being eligible to appear in search results. Five gates must all open for a URL to be indexed — close any one, and the page disappears from search regardless of content quality.

What is Indexability?

Indexability is the property of a URL being eligible to appear in a search engine's index. A page is indexable when every gatekeeper in the pipeline gives a green light: robots.txt allows crawling, the server returns 200, the HTML or HTTP header carries no noindex directive, and the canonical points to the URL itself.

If any single gate is closed, the URL falls out of the index regardless of its content quality or backlink profile. This is why indexability audits are the first step of every technical SEO engagement.

The 5-Gate Indexability Checklist

  1. Crawlable: robots.txt does not disallow the path
  2. Reachable: server returns HTTP 200 (not 4xx, 5xx, or redirect chain)
  3. Indexable directive: no noindex in meta robots or X-Robots-Tag header
  4. Canonical self-reference: rel=canonical points to the URL itself, not a different version
  5. Discoverable: linked from at least one indexable page or listed in sitemap.xml

The 4 Search Console Indexability States

StateMeaningAction
Submitted and indexedIn sitemap, in index, served in SERPsHealthy — monitor only
Crawled - currently not indexedGoogle fetched but chose not to indexImprove content quality, add inbound links
Discovered - currently not indexedGoogle found URL but did not crawl yetCrawl budget issue or low-priority signal
Excluded by noindex tagDirective blocks indexingRemove noindex if accidental

Common Indexability Killers

Accidental noindex

Most common cause: a staging environment ships <meta robots noindex> to production, or a CMS template includes a default noindex on category archives. Audit with Meta Tag Generator or curl:

curl -I -A "Googlebot" https://yourdomain.com/page

Canonical pointing elsewhere

If /blog/post-1 has rel=canonical href="/blog/post-1?utm=campaign", Google indexes the UTM version. Worse: if canonical points to a 404 or a redirect target, the page falls out entirely.

Soft 404

Server returns 200 but content is essentially empty ("No results found" pages, expired product pages with just a header). Google classifies these as soft 404s and silently excludes them.

Render-blocked content

SPAs that fail to server-render critical content may have empty initial HTML. Googlebot sees a near-blank page, classifies it as thin content, and skips indexing. Verify with URL Inspection › View Crawled Page › HTML in Search Console.

Pro tip: Run a monthly indexability audit by exporting your sitemap, querying the URL Inspection API for each URL, and flagging anything not in the "Submitted and indexed" state. For sites under 1k URLs, this finds 90% of problems in under an hour.

Frequently Asked Questions

What is the difference between crawlable and indexable?

Crawlable means Googlebot can fetch the page. Indexable means Google is allowed to include it in the index after fetching. A page can be crawlable but not indexable (noindex tag) or indexable but not crawlable (robots.txt block) - both cases prevent the page from showing in search results.

How long does it take Google to index a new URL?

Anywhere from minutes to 6+ months depending on site authority, internal linking, and crawl budget. High-authority sites with strong internal links see new URLs indexed within 24 hours. Low-authority new sites may wait weeks even for clearly indexable pages.

Why does Google sometimes not index pages that meet all indexability criteria?

Because indexability is necessary but not sufficient. Google also evaluates quality, uniqueness, and demand. Thin content, duplicates, and pages with no traffic potential are routinely classified as 'Crawled - currently not indexed' even when fully indexable.

How do I check indexability for a single URL?

Use Search Console URL Inspection. Enter the URL and review the Indexing section - it shows the indexability verdict, the canonical URL Google chose, last crawl date, and any blocking directives detected.

Can a URL be indexed without being in the sitemap?

Yes. Sitemaps speed up discovery but are not required for indexing. URLs discovered through internal links, external backlinks, or direct submission via URL Inspection can all be indexed without sitemap entries.

Related Terms & Resources

Part of the PositiveBacklink SEO Glossary. Updated May 2026.