Product updateQwairy v1.18
Qwairy v1.18: AI Revenue, Action Center & Pitch AuditRead the article
Qwairy
  • Pricing
  • Agencies
  • Blog
    114
Log inGet a demoStart Free
Qwairy

Optimize your visibility in the AI era with advanced Generative Engine Optimization.

Platform

  • Cockpit
  • Monitor
  • Act
  • Analyze
  • Optimize
  • Measure

Product

  • Pricing
  • Integrations
  • Documentation
  • API/MCP
  • Changelog
  • AffiliatesNew

Solutions

  • For Teams
  • Compare

Resources

  • Free AI Visibility AuditNew
  • Blog
  • GEO Guide
  • GEO Glossary
  • AI Crawlers Guide
  • Help Center

Company

  • About Us
  • Get a demo
  • Privacy Policy
  • Terms of Service
  • Legal Notice

© 2026 Qwairy SAS. All rights reserved.

GDPR Compliant
🇪🇺EU Data Hosting

Made with ❤️ in France 🇫🇷

  1. Home/
  2. Blog/
  3. Technical GEO Checklist
GEO ranking factors
AI citation factors
aeo ranking factors
AI Visibility
GEO
AI Search

Technical GEO: The Complete Crawlable & Citable Checklist

The technical foundation for getting cited by AI engines: crawler access, rendering, HTML quality, structured data, and discovery. A prioritized, run-anywhere checklist for any site.

Luca Fancello•July 29, 2026•Updated Aug 2, 2026•11 min read•
Guides
Summarize with AI

Generative engines are the new discovery layer. When someone asks ChatGPT, Perplexity, Google's AI Overviews, or Gemini about your category, the model builds an answer from pages it can reach, read, and trust. If your site is hard to fetch or hard to parse, you lose before ranking even begins. Most GEO advice fixates on content and authority. Both matter - but they sit on top of a technical foundation that decides whether an AI system can ingest your pages at all. Brilliant content buried behind client-side JavaScript, blocked crawlers, or broken markup never enters the answer set. You can't be cited for something the model never saw. This is the hub checklist for the technical side of Generative Engine Optimization (GEO). It covers the plumbing: crawler access, rendering, HTML quality, structured data, discovery signals, and the emerging llms.txt convention. By the end you'll have a concrete, prioritized checklist you can run against any site, plus pointers to deeper guides for each layer. Let's make your pages crawlable and citable.

Why technical GEO is different from classic technical SEO

Technical GEO shares a foundation with technical SEO, but the consumers are different - and less forgiving. Google's infrastructure has spent two decades learning to render JavaScript, follow messy redirects, and reconstruct intent from imperfect pages. Most AI crawlers are far more literal. Three differences reshape your priorities:

  • Multiple crawlers, multiple purposes. Instead of one dominant bot, you now face training crawlers, retrieval crawlers, and user-triggered fetchers from OpenAI, Anthropic, Perplexity, Google, and others. Each behaves differently and each can be allowed or blocked independently.

  • Extraction, not just ranking. Classic SEO asks "does this page rank?" GEO asks "can the model pull a clean, quotable passage from this page and attribute it to you?" That rewards structure and self-contained answers over keyword density.

Other Articles

Why AI Confuses Your Brand - Entity Disambiguation Fixes

AI answer engines often merge or misattribute similarly named brands. Learn why it happens, how to diagnose it across ChatGPT, Perplexity, and Gemini, and the entity disambiguation fixes that make your brand unmistakable.

7/29/2026•9 min read

Wikipedia & Wikidata for AI: How to Earn (and Keep) a Presence

AI engines lean on Wikipedia and Wikidata to describe brands and entities. Here's how notability and sourcing rules really work, and the policy-compliant way to earn and keep a presence.

7/29/2026•7 min read
View all articles
  • Thinner rendering budgets. Several AI crawlers fetch raw HTML and do little or no JavaScript execution. Content that a modern browser assembles at runtime can be effectively invisible to them.

  • Get the foundation wrong and every downstream tactic - E-E-A-T, freshness, off-site citations - is wasted effort.

    The crawlable & citable checklist

    Six-layer technical GEO stack from crawler access to measurement

    Use this table as your at-a-glance audit; the sections below expand each row. Work top to bottom - access problems make everything else moot.

    #
    Layer
    What to verify
    Deep-dive guide
    1
    Crawler access
    AI user-agents aren't blocked in `robots.txt` or at the WAF/CDN
    robots.txt & AI Crawlers: Which Bots to Allow
    2
    Rendering
    Core content exists in the raw HTML, not just after JS runs
    JavaScript Rendering & AI Crawlers: Why Your Content May Be Invisible

    Is your brand visible in AI search?

    Run a free audit: see if ChatGPT, Gemini and Copilot recommend you, in about a minute.

    Run my free audit

    1. Give AI crawlers access

    If the bots can't fetch your pages, nothing else on this list matters. The first audit is always access, and it has two failure points: your robots.txt and your edge (CDN/WAF) rules. The major AI user-agents are documented publicly. OpenAI's crawler documentation separates GPTBot, OAI-SearchBot, and ChatGPT-User for training, search, and user-triggered fetches. Anthropic's crawler documentation covers ClaudeBot, Claude-SearchBot, and Claude-User, including how to allow or block each agent. Perplexity's crawler documentation covers PerplexityBot and Perplexity-User for indexing and user-initiated fetches. Google's crawler documentation defines Google-Extended as a control token for Gemini and Vertex AI training without affecting Search indexing. The nuance most teams miss: blocking training crawlers is not free. For engines that retrieve live, being reachable is a precondition for being cited. Disallowing every AI bot to protect your content can also remove you from the answers your buyers see. Decide deliberately, agent by agent. A minimal, permissive stance looks like this:

    User-agent: GPTBot
    Allow: /
    
    User-agent: OAI-SearchBot
    Allow: /
    
    User-agent: ClaudeBot
    Allow: /
    
    User-agent: PerplexityBot
    Allow: /
    
    Sitemap: https://www.example.com/sitemap.xml
    

    Then verify at the edge. Cloudflare, Akamai, and similar providers increasingly ship default AI-bot blocking or managed rules, so a bot allowed in robots.txt can still be 403'd upstream. Check real server logs, not just the file. The full agent-by-agent breakdown lives in robots.txt & AI Crawlers: Which Bots to Allow.

    2. Make sure your content survives without JavaScript

    Assume the crawler sees your raw HTML and nothing more. Googlebot renders JavaScript in a second wave, but many AI crawlers do not - Vercel's analysis of AI crawler behavior found that the ChatGPT and Claude crawlers fetched JavaScript files but did not execute them. If your headline, body copy, or key facts only appear after a client-side framework hydrates, those crawlers get an empty shell. The fix is to serve meaningful HTML on the first response:

    • Server-side rendering (SSR) or static generation (SSG) for content pages, so the answer text is present in the initial payload.

    • Prerendering or dynamic rendering as a fallback for heavily client-rendered apps.

    • Progressive enhancement: the core content and links work without JS; interactivity layers on top.

    To test what a bot actually sees, disable JavaScript in your browser, use curl to fetch the raw HTML, or check Google's URL Inspection "view crawled HTML." If your primary content is missing from that source, it's missing for AI too. The full playbook is in JavaScript Rendering & AI Crawlers: Why Your Content May Be Invisible.

    3. Ship clean, semantic HTML and fast pages

    Extraction quality tracks HTML quality. A model pulling a quotable passage does far better with a clear document than with a soup of nested <div>s. Give it structure to grab onto:

    • One descriptive <h1>, then a logical <h2>/<h3> hierarchy that mirrors the questions the page answers.

    • Real semantic elements - <article>, <section>, <table>, <ul> - instead of styled generic containers.

    • Answer-first passages: lead each section with a direct, self-contained statement a model can lift verbatim.

    • Descriptive alt text and captions so non-text content is still readable.

    Speed and reliability matter too. Crawlers on a budget abandon slow responses, and intermittent 5xx errors or "soft 404s" (a 200 status on an empty or error page) can quietly drop pages from consideration. Serve fast, stable responses and correct status codes. Keep an eye on genuine 404s and redirect chains - every hop is a chance for a crawler to give up.

    Is your brand visible in AI search?

    See your mentions across ChatGPT, Claude and Perplexity in real time, the moment buyers ask.

    Check now

    4. Structure data so machines understand entities

    Structured data turns a page into facts a model can trust and attribute. Schema.org markup doesn't guarantee a citation, but it disambiguates who you are and what a page is - which is exactly what generative engines need to attribute a claim to the right entity. Prioritize the markup that establishes identity and content type:

    • Organization with sameAs links to your official profiles, tying your brand to a single, consistent entity.

    • Article / BlogPosting with a clear author, datePublished, and dateModified to signal freshness and authorship.

    • Person for author entities, connected via sameAs to reinforce expertise (E-E-A-T).

    • Breadcrumb to make site structure explicit.

    Validate everything with Google's Rich Results Test and the Schema Markup Validator - invalid JSON-LD is worse than none. For the full entity-focused breakdown (and how it differs from AEO-specific FAQPage/HowTo markup), see JSON-LD Schema Guide for AI Citations.

    5. Help discovery: sitemaps, internal links, and canonicals

    Crawlers still need a map and a clean set of URLs. Three signals do most of the work:

    1. XML sitemaps. Keep them current, list canonical URLs only, and reference them in robots.txt. This is the cheapest way to surface new and updated pages.
    2. Internal linking. Contextual links spread crawl access and signal which pages are important. Orphan pages - reachable by no internal link - are easy to miss. Hub-and-spoke topic clusters help both crawlers and models understand how your content connects.
    3. Canonicals and duplication. One canonical URL per piece of content. Conflicting canonicals, parameter duplicates, and mixed HTTP/HTTPS or www/non-www versions split signals and waste crawl budget.

    Architecture is a citability lever, not just a crawl one: a well-linked, self-contained page is easier to retrieve and quote. Go deeper in Site Architecture for AI: Making Every Page Answerable.

    6. Consider llms.txt - with realistic expectations

    llms.txt is a proposal, not an established ranking factor. The llms.txt convention suggests a Markdown file at your root that points models to your most important, clean content. It's low-cost and harmless to add. Be honest about adoption, though: no major AI engine has publicly confirmed it uses llms.txt to rank or cite pages, and prominent voices in search have been skeptical of treating it as a must-have. Treat it as a low-effort experiment that may help discovery, not as a substitute for crawlable HTML and structured data. The evidence-based case is laid out in llms.txt Explained: Should You Add It?.

    How to run a technical GEO audit

    Priority levels for a technical GEO audit

    Work the checklist in order - access first, polish last. Here's a repeatable pass:

    1. Confirm access. Fetch robots.txt, check that AI user-agents aren't disallowed, then check server logs and edge rules for silent 403s.
    2. Check rendering. Fetch key pages with JavaScript disabled or via curl. Is the core content in the raw HTML?
    3. Audit HTML and speed. Verify a single clean <h1>, semantic structure, correct status codes, and fast, stable responses.
    4. Validate structured data. Run priority templates through a schema validator and confirm sameAs entity links resolve.
    5. Verify discovery. Confirm the sitemap is current and referenced, canonicals are consistent, and no important page is orphaned.
    6. Track what AI actually does. Watch which bots crawl you, which pages they hit, and - crucially - whether you get cited in real answers.

    That last step is where measurement closes the loop. Qwairy tracks your visibility and citations across ChatGPT, Claude, Perplexity, Gemini, and Google AI Overviews, monitors AI crawler activity on your site, and surfaces which sources engines pull from - so you can tell whether a technical fix actually moved you into more answers. Fixing crawlability is only worth it if you can see the result; that's the measurement layer Qwairy provides.

    Go deeper on the technical stack: Configure AI crawlers in robots.txt, test JavaScript rendering for AI crawlers, improve site architecture for AI retrieval, and treat llms.txt as an optional experiment rather than a ranking shortcut.

    Conclusion

    Technical GEO is unglamorous, and that's exactly why it's an edge. While competitors chase content volume, a site that AI crawlers can reach, render without JavaScript, parse as clean HTML, and understand as a coherent entity gets pulled into answers the others never enter. Run the six-layer checklist, fix access first, and measure whether each change earns you more citations. The foundation compounds - every satellite tactic works better once the plumbing is right.

    FAQ

    What is technical GEO?

    Technical GEO is the set of technical practices that make a website reachable, readable, and interpretable by the crawlers and models behind generative engines like ChatGPT, Perplexity, and Google AI Overviews. It covers crawler access, rendering, HTML quality, structured data, and discovery signals - the foundation content and authority sit on top of.

    How is technical GEO different from technical SEO?

    They share a foundation, but GEO's consumers are stricter. Instead of one dominant search bot, you face many AI crawlers with different purposes, several of which don't execute JavaScript. GEO also optimizes for clean passage extraction and entity attribution, not just ranking, so structure and self-contained answers matter more.

    Should I block AI crawlers in robots.txt?

    Only deliberately. Blocking training crawlers may protect content, but for engines that retrieve live, being reachable is a precondition for being cited - so a blanket block can quietly remove you from AI answers your buyers see. Decide agent by agent rather than disallowing everything.

    Do AI crawlers execute JavaScript?

    Often not. Googlebot renders JavaScript in a second wave, but several AI crawlers fetch raw HTML and do little or no JS execution, so client-side-rendered content can be invisible to them. Serving server-rendered or static HTML with your core content in the first response is the safe default.

    Does structured data guarantee AI citations?

    No. Schema markup doesn't force a citation, but it disambiguates your identity and your content type, which helps engines attribute claims to the right entity. Prioritize Organization, Article, Author, and sameAs markup, and always validate it - invalid JSON-LD can do more harm than none.

    How do I measure whether technical fixes improved my AI visibility?

    Track two things: crawler activity on your site (which bots hit which pages) and your actual presence in AI answers (citations and share of voice across engines). A platform like Qwairy monitors both, so you can connect a technical change to a measurable shift in how often engines cite you.

    Start Monitoring Today

    Is Your Brand Visible in AI Search?

    Track your mentions across ChatGPT, Claude, Perplexity and all major AI platforms. Join 1,500+ brands monitoring their AI presence in real-time.

    Complete AI Monitoring
    Track every mention in real-time
    Competitor Intelligence
    See what AI recommends
    Proven Results
    87% see improvements in 30 days
    Start Free Trial

    Free trial • No credit card required • Complete platform access

    In this article

    • Why technical GEO is different from classic technical SEO
    • The crawlable & citable checklist
    • 1. Give AI crawlers access
    • 2. Make sure your content survives without JavaScript
    • 3. Ship clean, semantic HTML and fast pages
    • 4. Structure data so machines understand entities
    • 5. Help discovery: sitemaps, internal links, and canonicals
    • 6. Consider llms.txt - with realistic expectations
    • How to run a technical GEO audit
    • Conclusion
    • FAQ

    Share

    See your brand in AI search

    Book a demo and discover how you rank across ChatGPT, Claude and Perplexity.

    Book a demo
    3
    HTML & speed
    Clean semantic markup, fast responses, no soft errors
    This guide
    4
    Structured data
    Organization, Article, Author, `sameAs` entity markup
    JSON-LD Schema Guide for AI Citations
    5
    Discovery
    XML sitemaps, internal links, correct canonicals
    Site Architecture for AI: Making Every Page Answerable
    6
    `llms.txt`
    Optional guide file - with realistic expectations
    llms.txt Explained: Should You Add It?