GeoPromptTracker

AI crawler profile

What is CCBot? How to allow or block Common Crawl's crawler

User-agent string to match in robots.txt and server logs: CCBot

Operator

Common Crawl

Purpose

AI model training

robots.txt

Respects robots.txt

CCBot builds Common Crawl, the open web archive that has served as foundational training data for many large language models, including early GPT models. Blocking CCBot is the single broadest AI-training opt-out available, since dozens of model builders consume the Common Crawl dataset downstream.

Does CCBot respect robots.txt?

Common Crawl is a nonprofit with a long public record of honoring robots.txt and crawl-delay directives.

Verify it's really CCBot

Common Crawl publishes no IP-range file for CCBot, so it can only be identified by its user-agent string — which anything can send. Treat traffic claiming this agent as unverified, and prefer a reverse-DNS check where the operator documents one before acting on it.

Block CCBot with robots.txt

robots.txt — block
User-agent: CCBot
Disallow: /

Explicitly allow CCBot

robots.txt — allow
User-agent: CCBot
Allow: /

Block CCBot at the server or CDN

robots.txt is the right first step for CCBot, since Common Crawl honors it. Use these only if you want the block enforced rather than requested — for example to stop agents spoofing the user agent. Matching on the user-agent string still trusts a self-declared header — and no IP-range file exists for this agent, so treat it as best-effort.

nginx
if ($http_user_agent ~* "CCBot") {
    return 403;
}
apache — .htaccess
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} CCBot [NC]
RewriteRule .* - [F,L]
cloudflare — WAF expression
(http.user_agent contains "CCBot")

Find CCBot in your server logs

shell
grep -i "CCBot" /var/log/nginx/access.log | wc -l

Should you block CCBot?

Blocking CCBot opts your content out of Common Crawl's model training — a legitimate choice for original content you don't want reproduced by AI. The trade-off: models trained without your content are less likely to know your brand or recommend it unprompted. There is no direct traffic loss today, since training crawlers don't send visitors. See our guide on whether to block AI bots for the full decision framework.

Check and monitor CCBot on your site

Related reading

Frequently asked questions

What is CCBot?

CCBot is Common Crawl's web crawler for collecting AI training data. Common Crawl's crawler; its dataset is widely used to train LLMs.

Does CCBot respect robots.txt?

Common Crawl is a nonprofit with a long public record of honoring robots.txt and crawl-delay directives.

How do I block CCBot?

Add "User-agent: CCBot" followed by "Disallow: /" to your robots.txt file. The change takes effect the next time the bot fetches your robots.txt.

Does blocking CCBot hurt my Google rankings?

No. CCBot is separate from Googlebot, which handles Google Search indexing. Blocking CCBot has no effect on your traditional search rankings.

How can I tell if CCBot is crawling my site?

Search your server access logs for the string "CCBot" — for example: grep -i "CCBot" /var/log/nginx/access.log | wc -l. Our free AI Bot Log Analyzer does this in your browser: paste a log file and it counts hits per AI crawler, including CCBot, with per-path breakdowns.

How do I use CCBot?

You don't — CCBot isn't a tool you run. It's Common Crawl's own crawler, operated by Common Crawl, that visits your site from their infrastructure. The only control you have over it is whether you allow or block it, via robots.txt or a server rule. If you're looking to crawl other sites yourself, you'd write your own crawler or use a crawling library; sending "CCBot" as your user agent would be impersonating Common Crawl.

Does CCBot respect crawl-delay?

Almost certainly not. Crawl-delay was never part of the original robots.txt specification — Google has publicly said it ignores the directive, and the AI crawlers that model their parsers on Google's do the same. Common Crawl publishes no position on crawl-delay for CCBot, so treat it as unsupported. If CCBot is hitting your site harder than you want, rate-limit it at the server or CDN instead: a Cloudflare rate-limiting rule or an nginx limit_req zone matched on the user agent will actually be enforced, whereas a crawl-delay line is only a request that this agent likely never reads.

Why is CCBot ignoring my robots.txt?

Common Crawl states CCBot honors robots.txt, so if you are still seeing hits the cause is usually one of four things rather than the bot misbehaving. First, robots.txt is cached — Common Crawl may be working from a copy fetched up to 24 hours before your change. Second, the rule may not match: robots.txt user-agent matching is on a prefix of the token, and a typo or a trailing character breaks it silently. Third, the block may sit under a different user-agent group than the one this bot reads, since a bot obeys only the most specific group that matches it, not the wildcard group as well. Fourth, the traffic may be something else sending CCBot as its user agent, which anything can do.

Does CCBot execute JavaScript?

Treat it as no unless Common Crawl says otherwise. Rendering JavaScript costs an order of magnitude more than fetching HTML, and most AI crawlers — unlike Googlebot, which runs a full headless Chrome — read the raw HTML response and stop there. The practical consequence: anything your page loads client-side after the initial response is likely invisible to CCBot. If your main content is client-rendered, server-render it or pre-render it so the text exists in the first response.

What are CCBot's IP ranges?

Common Crawl publishes no IP-range file for CCBot, which means there is no way to verify a request really came from them. Any traffic claiming this user agent should be treated as unverified. If you need certainty, block on the user agent and accept that you may be blocking impostors rather than the real crawler — and note that the absence of published ranges is itself a signal about how seriously the operator treats crawler transparency.

How often does CCBot crawl my site?

There is no published schedule, and no operator commits to one. Training crawlers like CCBot typically sweep in bursts rather than at a steady rate — quiet for weeks, then hundreds of requests over a day or two as a collection run reaches your domain. Larger and more-linked sites are revisited more often. The only way to know for your own site is to measure it: grep your access log for the user agent, or paste the log into our AI Bot Log Analyzer, which breaks hits down by date and path in your browser.

Where is the official Common Crawl documentation for CCBot?

Common Crawl publishes it at https://commoncrawl.org/ccbot. That page is the authoritative source for the user-agent string and Common Crawl's stated crawling policy.

Commonly confused with

Other AI crawlers

Part of our directory of every known AI crawler, refreshed monthly. Last verified: 2026-09-13.