TECHNICAL REFERENCE PUBLISHED AUGUST 18, 2026 · 16 MIN READ

GPTBot, ClaudeBot & PerplexityBot: The Complete robots.txt Guide.

Blocking GPTBot does not remove you from ChatGPT search. Allowing ClaudeBot does not make you citable. Most robots.txt files written in the last two years get this backwards — because the file controls three completely different kinds of bot, and the job a bot does is what should decide whether you block it.

12Bots ecommerce brands must know
3Jobs that decide block or allow
3Copy-paste configs below
90dRecommended re-audit cycle
Quick Answer

Every AI bot does one of three jobs, and the job — not the company that runs it — should decide your rule. Training collectors (GPTBot, ClaudeBot, CCBot, Meta-ExternalAgent, cohere-ai) harvest content for future model training; blocking them is a policy choice with almost no citation cost. Search index crawlers (OAI-SearchBot, Claude-SearchBot, PerplexityBot, Amazonbot) build the retrieval indexes AI answers are assembled from; blocking them removes you from AI answers entirely. User-triggered fetchers (ChatGPT-User, Claude-User, Perplexity-User, Meta-ExternalFetcher) activate only when a real person asks a question; blocking them helps nobody. The single most common mistake is assuming Disallow: GPTBot removes you from ChatGPT — it does not, because ChatGPT search runs on OAI-SearchBot, a completely separate user-agent. For most ecommerce brands the right configuration is to allow the retrieval and user-triggered layers unconditionally, and decide the training layer on policy.

There is a robots.txt file on the internet right now that says User-agent: GPTBot / Disallow: / and whose owner believes they have opted out of ChatGPT. They have not. They have opted out of training and stayed fully visible in ChatGPT search. There are also files doing the exact opposite by accident.

Both mistakes come from the same misunderstanding: treating robots.txt as a list of companies rather than a list of behaviors. OpenAI alone runs three separate user-agents that do three unrelated things. Anthropic runs three. Perplexity runs two. Google's situation is stranger still, because two of its most-discussed tokens are not crawlers at all.

If you have not audited your robots.txt in the past six months, the realistic odds are that it is either blocking bots you want or allowing bots you have a genuine reason to exclude. Neither error announces itself. There is no warning, no notification, no drop in any dashboard you look at — just an absence.

This guide is the reference. Three copy-paste configurations, the complete bot table, and the failure modes that make correct files stop working anyway.

Definition

User-agent token — the identifier a bot presents in its request header and the string robots.txt rules match against. Tokens are not companies. One organization commonly operates several tokens with different purposes, and rules written against one token have no effect on the others, even when both belong to the same company.

01/12SECTION

The Three Jobs Every AI Bot Does

This taxonomy is the whole guide. Get it right and every configuration decision becomes obvious.

Job one: training collection

These crawlers harvest content that may be used in future model training runs. Their visits produce no immediate citations — they shape what next year's models know from memory rather than what this year's models retrieve today. GPTBot, ClaudeBot, CCBot, Meta-ExternalAgent, cohere-ai, and AI2Bot live here.

Blocking these has a real but delayed and diffuse cost, and essentially no short-term visibility cost. Publishers with licensing leverage increasingly block them. Most ecommerce brands conclude their marginal contribution to a training corpus is worth nothing to them and leave them open. Both positions are defensible.

Job two: search index crawling

These build the retrieval indexes that AI answers are assembled from at query time. OAI-SearchBot populates ChatGPT's search, Claude-SearchBot supports Claude's web answers, PerplexityBot feeds Perplexity's index, Amazonbot feeds Amazon's systems.

Blocking any of these removes you from that engine's answers. Not reduces — removes. If citation visibility matters to you at all, these should be open.

Job three: user-triggered fetching

These fire when a specific person asks a question and the assistant goes to retrieve a particular page to answer it. ChatGPT-User, Claude-User, Perplexity-User, Meta-ExternalFetcher, and MistralAI-User are in this group.

Blocking these accomplishes almost nothing defensively and breaks the exact moment a real human being tries to hand your page to their assistant. There is very little argument for it.

The one sentence to remember

Blocking a training bot costs you almost nothing in citations. Blocking a search or user-triggered bot removes you from AI answers entirely. Every configuration decision below follows from that asymmetry.

02/12SECTION

The Complete 2026 Bot Reference

Every user-agent an ecommerce brand needs to have an opinion about, grouped by operator.

User-Agent TokenOperatorJobRecommendation
GPTBotOpenAITrainingPolicy choice
OAI-SearchBotOpenAISearch indexAllow
ChatGPT-UserOpenAIUser-triggeredAllow
ClaudeBotAnthropicTrainingPolicy choice
Claude-SearchBotAnthropicSearch indexAllow
Claude-UserAnthropicUser-triggeredAllow
anthropic-aiAnthropicLegacy tokenInclude for completeness
PerplexityBotPerplexitySearch indexAllow
Perplexity-UserPerplexityUser-triggeredAllow
GooglebotGoogleSearch + AI OverviewsNever block
Google-ExtendedGoogleControl token, not a crawlerPolicy choice
ApplebotAppleSearch indexAllow
Applebot-ExtendedAppleControl token, not a crawlerPolicy choice
AmazonbotAmazonSearch indexAllow
Meta-ExternalAgentMetaTrainingPolicy choice
Meta-ExternalFetcherMetaUser-triggeredAllow
CCBotCommon CrawlTraining corpusPolicy choice
cohere-aiCohereTrainingPolicy choice
BytespiderByteDanceTrainingBlock, with server rules
DuckAssistBotDuckDuckGoSearch indexAllow

Roughly twelve of these genuinely matter for an ecommerce brand, operated across six organizations. The full annotated list with crawl behavior and IP verification detail lives in our AI crawler list for ecommerce.

This list changes

Major new AI bot user-agents appear roughly two to four times a year, usually when a large lab ships a new product or splits an existing crawler. OpenAI added OAI-SearchBot in 2024. Anthropic split off Claude-SearchBot in 2025. Anything you write today has a shelf life of about a quarter.

03/12SECTION

Config A: Maximum AI Visibility

This is the right configuration for the large majority of ecommerce brands. You want to be found, cited, and recommended, and you have no licensing leverage to protect. Everything open, private paths excluded.

# CONFIG A - Maximum AI visibility # Recommended for most ecommerce brandsUser-agent: * Allow: / Disallow: /cart/ Disallow: /checkout/ Disallow: /account/ Disallow: /wp-admin/ Disallow: /*?add-to-cart=# OpenAI - training, search, user fetch User-agent: GPTBot User-agent: OAI-SearchBot User-agent: ChatGPT-User Allow: /# Anthropic - training, search, user fetch User-agent: ClaudeBot User-agent: Claude-SearchBot User-agent: Claude-User User-agent: anthropic-ai Allow: /# Perplexity User-agent: PerplexityBot User-agent: Perplexity-User Allow: /# Google, Apple, Amazon, Meta, DuckDuckGo User-agent: Google-Extended User-agent: Applebot User-agent: Applebot-Extended User-agent: Amazonbot User-agent: Meta-ExternalAgent User-agent: Meta-ExternalFetcher User-agent: DuckAssistBot Allow: /# ByteDance - ignores robots.txt, block at server too User-agent: Bytespider Disallow: /Sitemap: https://yourdomain.com/sitemap.xml

Note the wildcard block at the top handles the paths no bot should crawl. The named blocks below it are explicit allows, which matter because some hosting platforms and CMS defaults inject restrictive rules you may not have written.

04/12SECTION

Config B: Block Training, Keep Citations

This is the nuanced position, and it is only available because training and retrieval run on separate tokens. You opt out of contributing to model training while remaining fully eligible to be cited in AI answers.

It makes sense if your content is your product — original research, proprietary data, editorial work you license — rather than marketing for something else you sell.

# CONFIG B - Block training, allow citation # For brands whose content is the productUser-agent: * Allow: / Disallow: /cart/ Disallow: /checkout/ Disallow: /account/# BLOCKED - training collection User-agent: GPTBot User-agent: ClaudeBot User-agent: anthropic-ai User-agent: Google-Extended User-agent: Applebot-Extended User-agent: Meta-ExternalAgent User-agent: CCBot User-agent: cohere-ai User-agent: Bytespider Disallow: /# ALLOWED - retrieval and citation User-agent: OAI-SearchBot User-agent: ChatGPT-User User-agent: Claude-SearchBot User-agent: Claude-User User-agent: PerplexityBot User-agent: Perplexity-User User-agent: Applebot User-agent: Amazonbot User-agent: DuckAssistBot User-agent: Meta-ExternalFetcher Allow: /Sitemap: https://yourdomain.com/sitemap.xml
The honest caveat on Config B

The training and retrieval split is real and both OpenAI and Anthropic document it. But the boundary is a policy boundary, not a technical wall, and it depends on those organizations continuing to honor a distinction they defined themselves. If your opt-out needs to be legally durable rather than cooperatively respected, robots.txt is not the instrument.

05/12SECTION

Config C: Full Block

Included for completeness. This makes you invisible in AI answers. For an ecommerce brand it is almost always the wrong call, and you should be able to articulate exactly why you are choosing it before you deploy it.

# CONFIG C - Full AI block # You will not appear in AI answersUser-agent: GPTBot User-agent: OAI-SearchBot User-agent: ChatGPT-User User-agent: ClaudeBot User-agent: Claude-SearchBot User-agent: Claude-User User-agent: anthropic-ai User-agent: PerplexityBot User-agent: Perplexity-User User-agent: Google-Extended User-agent: Applebot-Extended User-agent: Amazonbot User-agent: Meta-ExternalAgent User-agent: Meta-ExternalFetcher User-agent: CCBot User-agent: cohere-ai User-agent: Bytespider User-agent: DuckAssistBot Disallow: /# Googlebot stays allowed - blocking it # removes you from Google Search entirely User-agent: Googlebot Allow: /

Even in the full-block configuration, Googlebot stays open. Section six explains why that is not optional.

06/12SECTION

The Google Trap Nobody Warns You About

Here is the constraint that surprises people: you cannot opt out of Google's AI Overviews without opting out of Google Search.

Both run through Googlebot. There is no separate token for AI Overviews or AI Mode. If Googlebot can crawl your page, that page is eligible to appear in an AI Overview, and the only way to prevent it is to block Googlebot — which removes you from Google Search entirely. For an ecommerce brand that is not a trade-off, it is self-destruction.

What Google-Extended actually controls

Google-Extended is frequently misunderstood as the AI Overviews opt-out. It is not. It governs whether your content is used for Gemini and Vertex AI model development. Blocking it has no effect on Googlebot's crawling, on your Search rankings, or on whether you appear in AI Overviews.

If you block...You loseYou keep
GooglebotGoogle Search, AI Overviews, AI ModeNothing worth having
Google-ExtendedGemini training and grounding useSearch, rankings, AI Overviews
GPTBotOpenAI training inclusionChatGPT search visibility
OAI-SearchBotChatGPT search visibilityTraining inclusion
Applebot-ExtendedApple AI training useSiri and Spotlight results

The practical read: there is no configuration that gets you Google Search without AI Overview eligibility. Anyone selling you one is mistaken. The detail on how those surfaces differ is in our Google AI Mode versus AI Overviews guide.

07/12SECTION

Control Tokens That Are Not Crawlers

Two of the most-discussed entries in every AI robots.txt article do not correspond to any bot that will ever appear in your server logs.

Google-Extended and Applebot-Extended are permission tokens. They exist purely so publishers can express a data-use preference through robots.txt. No user-agent by either name fetches pages. If you go looking for Google-Extended in your access logs to confirm your rule is working, you will find nothing, and nothing is the expected result.

This trips people up in a specific way: they add the token, see no log entries, conclude the rule is broken, and start changing things that were fine.

If you go looking for Google-Extended in your server logs, you will find nothing. That is not a broken rule. It is a token that no crawler was ever going to present.
Ian Smith · Evolve Media Agency

The corresponding real crawlers are Googlebot and Applebot, which do appear in logs and which you should generally leave alone.

08/12SECTION

The Bots That Ignore robots.txt

robots.txt is a norm, not an enforcement mechanism. It works because well-behaved crawlers choose to read and honor it. Some do not.

Compliance is opt-in

The major labs — OpenAI, Anthropic, Google, Apple, Perplexity — document their user-agents and state that their crawlers respect robots.txt directives. In practice they largely do, and you can verify it from your own logs.

Three caveats matter and none of them are optional to understand:

  • A directive only works if the bot reads it. Bytespider in particular has a poor record. HAProxy reported in 2024 that a very large share of AI crawler traffic across their customer base came from Bytespider alone, much of it disregarding disallow rules. CCBot and Diffbot have mixed records.
  • User-agents can be spoofed. Anything can claim to be anything. The major operators publish IP ranges precisely so you can verify that a request claiming to be GPTBot actually originated from OpenAI infrastructure.
  • Real-time agent fetches are a gray zone. When an AI browsing agent operating on behalf of a logged-in human fetches a page, whether that is a crawler subject to robots.txt or a user-agent acting as a proxy for a person is genuinely unsettled.
If you block one bot on this list

Make it Bytespider, and do not rely on robots.txt alone to do it. A disallow rule is a first line, not the defense. Section nine covers the server-level rules that actually stop it.

09/12SECTION

Server-Level Enforcement

When you genuinely need a block rather than a request, it has to happen above robots.txt. The pattern is to return a 403 based on user-agent matching.

Apache

# .htaccess - hard block non-compliant crawlers RewriteEngine On RewriteCond %{HTTP_USER_AGENT} (Bytespider|Diffbot|omgili) [NC] RewriteRule .* - [F,L]

Nginx

# nginx.conf - inside the server block if ($http_user_agent ~* "(Bytespider|Diffbot|omgili)") { return 403; }

Cloudflare

A WAF custom rule matching on User Agent with a Block action is the cleanest option if you are already behind Cloudflare, and it applies before the request reaches your origin. Cloudflare also ships managed AI-bot controls, which are convenient and are also the single most common cause of accidentally blocking bots you wanted — see the next section.

Test before you ship

User-agent regexes are easy to get wrong in ways that block far more than intended. A pattern matching "bot" will catch Googlebot. Always test the rule against a known-good user-agent string before deploying, and check your organic traffic the following day.

10/12SECTION

The Silent Blockers Costing You Citations

This is the section that matters most for brands who believe their configuration is fine. A perfect robots.txt can be completely overridden by something else in your stack, and none of these announce themselves.

  • Cloudflare bot management. Managed rules and bot-fight settings can challenge or block AI crawlers regardless of what your robots.txt says. This is the most common cause of unexplained invisibility, and it is often enabled by default or turned on by a well-meaning developer.
  • WAF rules matching by ASN or rate. Aggressive rate limiting looks reasonable until an indexing crawler trips it and quietly stops coming back.
  • Security plugins. Several popular WordPress security plugins ship with AI-crawler blocking as a default-on feature.
  • Hosting platform defaults. Some managed hosts and CMS platforms inject their own robots rules or bot filtering above your file.
  • Meta directives. A page-level noarchive or nosnippet can suppress the snippet an engine would have quoted, even though the crawl succeeded.
  • JavaScript rendering. If your content only exists after client-side rendering, a crawler that does not execute JavaScript retrieves an empty page. It was allowed, it fetched, and it got nothing.
  • Login walls and interstitials. Age gates, cookie consent blockers, and geo-redirects can serve a crawler something entirely different from what a user sees.

Diagnosing these requires looking at server logs rather than at your robots.txt file, which is exactly why so many brands never find them. Our AI crawler technical audit walks the full diagnostic process for finding what is actually blocking you.

FREE 30-MINUTE CALL

Not sure what is blocking you?

We will check your robots.txt, your CDN configuration, and your render path together and tell you whether AI crawlers are actually reaching your content.

Book a Strategy Call →
FREE RESOURCE

The Ecom Profit Box

Eleven playbooks on listings, conversion, images, and email. Built for operators, no fluff, no email sequence.

Grab It Free →
11/12SECTION

Verifying the Config Actually Works

Writing the file is the easy part. Confirming it does what you think requires three checks.

Check one: fetch your own robots.txt as a bot

Request your robots.txt while presenting an AI crawler user-agent string. If a CDN or WAF is interfering, you will frequently see it here first — a 403 or a challenge page rather than your file.

# Does a crawler actually get your file? curl -A "GPTBot" -I https://yourdomain.com/robots.txt# And can it reach a real content page? curl -A "OAI-SearchBot" -I https://yourdomain.com/your-page/# Expect: HTTP/2 200 # Red flags: 403, 429, or a challenge redirect

Check two: read your server logs

Filter access logs for each user-agent token over the last thirty days. You are looking for two things: which bots are visiting at all, and what status codes they receive. A bot you allowed that has never visited is a signal. A bot receiving 403s is a definite problem.

Remember section seven — Google-Extended and Applebot-Extended will never appear, and their absence means nothing.

Check three: ask the engines directly

The end-to-end test is behavioral. Ask each assistant a question your content should answer, then ask it what sources it used. If your pages are being retrieved, they will show up. This is slower than log analysis but it tests the whole chain rather than one link. Several AI visibility tracking tools automate the sampling.

12/12SECTION

robots.txt vs llms.txt vs Meta Directives

Three mechanisms, frequently conflated, controlling genuinely different things.

MechanismControlsScopeActually matters?
robots.txtWhether a bot may fetch a URLSite-wide, per user-agentYes, foundational
Meta robotsIndexing, snippets, archivingPer pageYes, for snippet control
X-Robots-TagSame as meta, via HTTP headerPer response, any file typeYes, for non-HTML files
llms.txtProposed content map for LLMsSite-wideLimited evidence so far

On llms.txt specifically

It is worth being straight about this. Research through 2026 suggests llms.txt has minimal measurable impact on citation rates today. What actually drives citations is domain authority, structured data, review platform presence, and third-party mentions. That does not make llms.txt worthless — it is trivially cheap to implement and may matter more later — but it is not where the gains are, and anyone presenting it as the primary lever is selling you the easy thing rather than the effective thing. Our llms.txt guide for ecommerce covers implementation and the honest evidence.

The maintenance cadence

Audit quarterly. The bot landscape produces two to four significant changes a year, and a robots.txt written eighteen months ago is missing tokens that did not exist when you wrote it. Put a recurring ninety-day reminder on it, re-check against the current bot list, and re-run the curl tests in section eleven.

For the wider technical picture, our AI visibility audit guide covers the full diagnostic, and the schema markup stack handles what happens after a crawler successfully reaches your page.

Key Takeaways

The Short Version

  • Every AI bot does one of three jobs. The job, not the company name, should decide whether you block it.
  • Blocking GPTBot removes you from OpenAI training, not from ChatGPT search. ChatGPT search runs on OAI-SearchBot, a separate token.
  • Blocking search index crawlers (OAI-SearchBot, Claude-SearchBot, PerplexityBot) removes you from AI answers entirely. Blocking training collectors costs almost nothing in citations.
  • You cannot opt out of Google AI Overviews without blocking Googlebot and losing Google Search. There is no separate token.
  • Google-Extended and Applebot-Extended are control tokens, not crawlers. They will never appear in your server logs and their absence means nothing.
  • robots.txt is a norm, not enforcement. Bytespider in particular ignores it, so genuine blocks need server-level 403 rules.
  • A perfect robots.txt is routinely overridden by Cloudflare bot management, WAF rate limits, security plugins, or JavaScript-only rendering. Check server logs, not just the file.
  • Re-audit every 90 days. Two to four significant bot changes ship per year.

Common Questions

AI Crawler robots.txt
FAQ

Does blocking GPTBot remove me from ChatGPT?

No, and this is the most consequential misunderstanding in the whole topic. GPTBot is OpenAI's training crawler. ChatGPT's search functionality runs on a separate user-agent called OAI-SearchBot, with user-triggered page fetches handled by a third called ChatGPT-User. Blocking GPTBot removes your content from OpenAI's training corpus while leaving your ChatGPT search visibility completely intact. If you actually want out of ChatGPT search, OAI-SearchBot is the token to block.

Should an ecommerce brand block AI crawlers at all?

For the large majority, no. Allow the search index and user-triggered layers unconditionally, because blocking those removes you from the fastest-growing discovery channel available. The training layer is a genuine policy choice: publishers with licensing leverage increasingly block it, while most ecommerce brands conclude their marginal contribution to a training corpus is worth nothing to them and leave it open. The exception is Bytespider, which most sites are right to block.

Can I block Google AI Overviews without losing Google Search?

No. Both run through Googlebot and there is no separate token for AI Overviews or AI Mode. If Googlebot can crawl a page, that page is eligible to appear in an AI Overview, and the only way to prevent it is blocking Googlebot, which removes you from Google Search entirely. Google-Extended does not do this — it only controls Gemini and Vertex AI training use and has no effect on Search or AI Overviews.

Why does Google-Extended never show up in my server logs?

Because it is not a crawler. Google-Extended and Applebot-Extended are permission tokens that exist purely so publishers can express a data-use preference through robots.txt. No user-agent by either name ever fetches a page. Their absence from your logs is the expected behavior, not evidence that your rule is broken. The corresponding real crawlers are Googlebot and Applebot.

Do AI crawlers actually respect robots.txt?

The major labs largely do. OpenAI, Anthropic, Google, Apple and Perplexity all document their user-agents and state that their crawlers honor standard directives, and you can verify compliance from your own server logs. But compliance is opt-in by design, some crawlers have poor records — Bytespider especially — and a user-agent string can be spoofed by anyone. Treat robots.txt as a norm that works with cooperative parties, not as an enforcement mechanism.

How do I actually stop a bot that ignores robots.txt?

At the server level, by returning a 403 based on user-agent matching. On Apache that is a RewriteCond and RewriteRule pair in .htaccess; on Nginx it is a conditional returning 403 inside the server block; behind Cloudflare it is a WAF custom rule with a Block action, which has the advantage of applying before the request reaches your origin. Test any user-agent regex against known-good strings first, because a pattern matching the substring "bot" will catch Googlebot.

My robots.txt allows everything but I still get no AI citations. Why?

Something above robots.txt is almost certainly intervening. The usual suspects are Cloudflare bot management or bot-fight mode challenging crawlers regardless of your file, WAF rate limits that an indexing crawler tripped, a WordPress security plugin shipping AI-blocking as default-on, or content that only exists after client-side JavaScript rendering so the crawler fetches an empty page. Diagnose from server logs rather than from the robots.txt file, since none of these are visible in the file itself.

What is the difference between OAI-SearchBot and ChatGPT-User?

OAI-SearchBot is an index crawler that visits pages proactively to build the retrieval index ChatGPT search draws on. ChatGPT-User fires reactively, when a specific person asks something and the assistant goes to fetch a particular page to compose an answer right then. Both should generally be allowed. Blocking the first removes you from the index; blocking the second breaks the moment a real human tries to hand your page to their assistant.

Is llms.txt worth implementing?

It is cheap enough to be worth doing, but do not expect it to move citations. Research through 2026 suggests minimal measurable impact on citation rates today. What actually drives citations is domain authority, structured data, review platform presence and third-party mentions. Implement llms.txt because it costs almost nothing and may matter more later, not because it is a lever. Anyone presenting it as the primary fix is selling the easy thing rather than the effective one.

How often should I update my robots.txt for AI crawlers?

Quarterly. Major new AI bot user-agents appear roughly two to four times a year, typically when a large lab ships a product or splits an existing crawler — OpenAI added OAI-SearchBot in 2024, Anthropic split off Claude-SearchBot in 2025. A file written eighteen months ago is missing tokens that did not exist when you wrote it. Set a ninety-day reminder, re-check against the current bot list, and re-run the curl verification tests.

Should I block CCBot and Common Crawl?

It depends on your view of training data, since CCBot feeds a public corpus used by many organizations for model training rather than powering any live retrieval. Blocking it costs you nothing in citations. If your goal is a broad opt-out of training use, include CCBot. If you are only concerned about specific foundation labs, the per-lab tokens are sufficient and CCBot can stay open. Note that its compliance record is mixed, so a server rule may be warranted if the block genuinely matters to you.

Does blocking a crawler affect my regular SEO rankings?

Only if you block Googlebot or Bingbot, which are classic search crawlers rather than AI crawlers. Blocking GPTBot, ClaudeBot, PerplexityBot, Google-Extended or Applebot-Extended has no effect on traditional search rankings. The danger is accidental: an overly broad user-agent regex in a server rule, or a security plugin's blanket bot-blocking, can catch Googlebot alongside the intended targets. Always check organic traffic the day after deploying any new bot rule.

Ian Smith, Founder of Evolve Media Agency
Ian Smith
Founder, Evolve Media Agency · AI Search & Ecommerce Specialist

Ian co-founded Evolve Media Agency in 2017 with his wife Megan. Over 9 years he has worked with $1M-$10M ecommerce brands on AI search visibility, schema infrastructure, content production, and channel diversification. Based in Colorado. Read Ian’s full bio →

Work With Ian

Check before you assume

Are You Actually Crawlable?

Book a strategy call and we will run the crawler tests against your live site, check your CDN and WAF configuration, and tell you whether AI engines can reach your content at all.