Skip to content
Back to all guides
AI Visibility

How to Check Whether Your Website Is Visible to AI Search Engines

AI visibility means checking whether AI crawlers can read your site's robots.txt-permitted content and whether your site exposes clear, machine-readable information for tools like llms.txt.

Last updated August 24, 2026 · ExtFoundry

AI visibility is whether AI systems — chat assistants, AI-powered search, and research agents — can actually access and understand your site's content. It depends on a few concrete, checkable factors rather than being a vague ranking signal.

What determines AI visibility

Crawler access. If your robots.txt blocks a given AI crawler, that crawler's provider generally can't read your site at all, regardless of anything else. This is the first thing to check, since it's a hard yes/no gate rather than a ranking factor.

Reachability. A page also needs to return a successful response (HTTP 200) and, ideally, have its key content in the initial HTML rather than requiring client-side JavaScript to render — some crawlers don't execute JavaScript.

Machine-readable summaries. Some sites publish an llms.txt file at their root — a plain-text index of what the site offers, intended to be easy for AI systems to parse quickly. It's not a universal standard yet, but it's a low-cost, low-risk addition.

How to check your own site

  1. Run your domain through the GPTBot Checker to see whether GPTBot and other tracked AI crawlers are allowed or blocked by your robots.txt.
  2. Confirm the page loads with a normal HTTP 200 status and isn't accidentally set to noindex.
  3. Check whether your site has an llms.txt file at the root (yoursite.com/llms.txt).

What to do if a crawler is blocked

If a scan shows a crawler you want to allow is currently blocked, add an explicit Allow rule for that crawler's user-agent token in robots.txt — see How robots.txt Affects AI Crawlers for the exact syntax.

Frequently Asked Questions

What does "AI visibility" mean?

Whether AI crawlers can access and read your site's content — determined mainly by robots.txt rules, page reachability, and whether content is available without client-side JavaScript.

How do I check if my site is blocked from AI crawlers?

Use the GPTBot Checker to scan your robots.txt against 70 tracked AI crawler tokens and see which are allowed or blocked.

What is llms.txt?

A plain-text file some sites publish at their root as a quick, machine-readable summary of what the site offers, aimed at AI systems.