GPTBot Blocked

No Comments
Gptbot blocked

Element Code: IN-057

TL;DR: Your robots.txt (or a WAF rule) is telling GPTBot, OpenAI's training crawler, to stay out. That does not break Google or Bing rankings, but it does mean your content is not part of what OpenAI's models learn from, and it can affect whether ChatGPT cites you depending on how the block is written. Check if the block was a deliberate call or an accident from a "block all AI bots" toggle someone flipped.
Bot Name
GPTBot
Operator
OpenAI
Purpose
Model training data
Affects
AI visibility, not classic SEO
Fix Difficulty
Low, one robots.txt edit

What GPTBot actually is

GPTBot is the crawler OpenAI uses to gather web content for training its models. It identifies itself as GPTBot/1.1 and requests pages the way Googlebot does: fetch robots.txt first, check if the path is allowed, then request the page. If your robots.txt has a block rule for User-agent: GPTBot, it will not crawl anything under that block, full stop.

People conflate GPTBot with two other OpenAI bots, and that confusion is the root of most misconfigured robots.txt files. OAI-SearchBot indexes pages so ChatGPT can cite and link to them in search-style answers. ChatGPT-User fires in real time when a live user asks ChatGPT to open a specific page. Three separate user agents, three separate rules. Blocking GPTBot doesn't block the other two, and plenty of site owners think they've opted out of "AI" entirely when they've only blocked training, not retrieval. OpenAI publishes IP ranges for each bot at openai.com/gptbot.json, openai.com/searchbot.json, and openai.com/chatgpt-user.json, the way to confirm a hit in your logs is really OpenAI and not a spoofed agent.

Why a site might block it on purpose

This is not automatically a mistake, and I want to say that before this article talks you into unblocking it. Some site owners block GPTBot deliberately for content licensing reasons: they don't want articles or proprietary data folded into a training set without compensation. News publishers pushed back hardest, and several signed direct licensing deals with OpenAI instead of leaving the door open. Bandwidth is a smaller but real concern too, since one more crawler adds server load on top of whatever scraper traffic you're already fighting.

So if this check flagged your site, the right question isn't "how do I fix this," it's "did we mean to do this." If legal made a documented call to keep GPTBot out for licensing reasons, the check is working as intended: it's surfacing a fact, not a bug.

Why blocking it usually hurts AI visibility

Here's the part that costs you something. If GPTBot can't crawl your site, your content isn't part of what future model versions learn from. When someone asks ChatGPT a question your page would have answered well, the model never saw your phrasing or data, because it was never in the training run. That's separate from whether ChatGPT cites you in a live answer, which is OAI-SearchBot and ChatGPT-User's job, but it still matters for GEO.

This is different from classic SEO. Google and Bing rankings are untouched by a GPTBot block, since Googlebot and Bingbot are separate crawlers with separate rules. You won't see a ranking drop in Search Console from this. What you lose is upside in a channel referral data shows is growing: traffic from ChatGPT answers, and presence in whatever corpus shapes the next model generation.

How to detect the block

A few ways to confirm what's happening, roughly in order of speed:

  1. Check robots.txt directly. Visit yourdomain.com/robots.txt and look for User-agent: GPTBot followed by Disallow: /, or a wildcard User-agent: * block catching GPTBot with everything else.
  2. Screaming Frog's robots.txt checker. Test specific user agents against your rules under Configuration > robots.txt > Custom, simulating exactly what GPTBot sees.
  3. Server logs. Filter access logs for GPTBot and check response codes. A wall of 403s, or zero hits despite robots.txt allowing it, points to a WAF blocking it at a layer robots.txt can't control.
  4. WAF and CDN dashboards. Cloudflare has a "Block AI Bots" toggle under Security > Bots. These sit above robots.txt entirely: a site can look wide open in the text file and still 403 every GPTBot request because someone flipped a switch in the CDN panel.

The combination that trips people up most: robots.txt looks fine, but the WAF silently 403s GPTBot's IP ranges. Check both layers.

How to fix it, step by step

  1. Open robots.txt, usually at the site root or through your WordPress SEO plugin's editor.
  2. Find any User-agent: GPTBot block with Disallow: / and remove it, or change it to Allow: /.
  3. If GPTBot is swept up by a wildcard User-agent: * disallow, add a specific User-agent: GPTBot section above it with Allow: /, since specific rules beat wildcards.
  4. Check your CDN or WAF for an "AI bot" blocking toggle. Disable it, or confirm it's intentionally on if you're keeping the block for licensing reasons.
  5. Verify by refetching robots.txt and cross-checking against OpenAI's crawler docs for current syntax.
  6. Watch server logs for GPTBot hits returning 200s instead of 403s. OpenAI doesn't recrawl instantly, so don't panic if nothing shows up same-day.

What good looks like

Good isn't "always allow every bot." Good is a robots.txt and WAF configuration that reflects an actual decision someone made and can explain. If your legal team flagged content licensing risk, that's a defensible, intentional position, and this check is just confirming it matches your intent. If a hosting platform shipped "block AI bots" as the default and nobody looked at it, that's the accident this check exists to catch. Either way, the fix isn't really technical, it's a five-minute conversation with whoever owns the decision, followed by a robots.txt edit that matches what was actually decided.

GPTBot Requests Page User-agent: GPTBot/1.1 Checks robots.txt and WAF / firewall rules Allowed Disallowed Page is crawled Content eligible for training data 403 or no fetch Never enters training data Possible upside Shapes future model answers (separate from live citations) Confirmed intentional? Licensing concern: leave as is Accidental default: fix robots.txt

The main AI crawlers you'll see in your logs

User AgentOperatorPurposeBlocking it affects
GPTBotOpenAICrawls for model training dataFuture model knowledge of your site
OAI-SearchBotOpenAIIndexes pages for ChatGPT search citationsWhether ChatGPT can link/cite you live
ChatGPT-UserOpenAILive fetch when a user asks ChatGPT to open a pageReal-time browsing inside a chat session
ClaudeBotAnthropicCrawls for model training dataFuture Claude model knowledge of your site
Google-ExtendedGoogleControls use of content for Gemini / AI Overviews trainingAI features, not classic Google web ranking
PerplexityBotPerplexityCrawls and indexes for Perplexity answersCitations in Perplexity results

Google-Extended is the closest analog to GPTBot: a separate, opt-out-able signal controlling AI training without touching classic Google Search rankings. If you already have a policy for Google-Extended, apply the same logic here instead of treating GPTBot as a one-off decision.

DO
  • Check both robots.txt and your WAF/CDN, either can block GPTBot alone
  • Make the block a documented decision, not an unreviewed default
  • Verify GPTBot's identity against OpenAI's published IP ranges
  • Treat GPTBot, OAI-SearchBot, and ChatGPT-User as three separate settings
  • Re-check robots.txt after any platform migration
DON'T
  • Assume blocking GPTBot also blocks ChatGPT's live citations, it doesn't
  • Leave a "block all AI bots" CDN toggle on without knowing who enabled it
  • Expect a robots.txt fix to show up in ChatGPT overnight
  • Confuse a GPTBot block with an SEO ranking issue
  • Unblock GPTBot reflexively if you have a real licensing reason to keep it out

FAQ

Does blocking GPTBot hurt my Google rankings?
No. Googlebot and GPTBot are separate crawlers with separate robots.txt rules. What you lose is potential presence in OpenAI's training data, not your position in Google's index.
If I unblock GPTBot, will my content show up in ChatGPT answers right away?
No. GPTBot feeds training for future model versions, a slow batch process, not a live index. Live citations in ChatGPT are controlled by OAI-SearchBot, a separate user agent with its own robots.txt rule.
Is it wrong to block GPTBot on purpose?
Not automatically. Some publishers block it over licensing concerns or bandwidth, and several negotiated direct deals with OpenAI instead. This check just surfaces that GPTBot is blocked so you can confirm it was your call.
How do I know if a request claiming to be GPTBot is really OpenAI?
Cross-reference the source IP against OpenAI's published ranges at openai.com/gptbot.json. User agent strings are trivial to fake.
My robots.txt allows GPTBot but I still see 403s in my logs. Why?
Almost always a WAF or CDN rule sitting above robots.txt, commonly Cloudflare's "Block AI Bots" toggle. robots.txt is a request, the WAF is enforcement, and the WAF wins if the two disagree.
Want a second set of eyes on your full AI crawler configuration, not just GPTBot? Our Advanced SEO Audit checks robots.txt, WAF rules, and crawler logs across every major AI bot so you know exactly who's getting in and who isn't, on purpose.

Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.

About SEO ProCheck

Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.

Work With Me

Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.

Subscribe to our newsletter!

More from our blog