AI crawler profile
What is cohere-ai? How to allow or block Cohere's crawler
User-agent string to match in robots.txt and server logs: cohere-ai
Operator
Cohere
Purpose
AI model training
robots.txt
Compliance unknown
Official docs
None published
cohere-ai is the user agent associated with Cohere, whose Command models focus on enterprise use cases. The crawler is undocumented, which makes its exact behavior hard to verify — most site owners treat it as a training crawler and decide on blocking accordingly.
Does cohere-ai respect robots.txt?
Cohere publishes no official crawler documentation, so robots.txt compliance can't be verified; use firewall rules if blocking it matters to you.
Verify it's really cohere-ai
Cohere publishes no IP-range file for cohere-ai, 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 cohere-ai with robots.txt
User-agent: cohere-ai Disallow: /
⚠ Because cohere-ai's robots.txt compliance is unreliable, pair this with a firewall or CDN rule matching the user-agent string if blocking actually matters to you.
Explicitly allow cohere-ai
User-agent: cohere-ai Allow: /
Block cohere-ai at the server or CDN
cohere-ai's robots.txt compliance is unreliable, so a robots.txt rule alone may not stop it. These enforce the block. 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.
if ($http_user_agent ~* "cohere-ai") {
return 403;
}RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} cohere-ai [NC]
RewriteRule .* - [F,L](http.user_agent contains "cohere-ai")
Find cohere-ai in your server logs
grep -i "cohere-ai" /var/log/nginx/access.log | wc -l
Should you block cohere-ai?
Blocking cohere-ai opts your content out of Cohere'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 cohere-ai on your site
- AI Crawler Access Checker — see whether your current robots.txt allows or blocks cohere-ai.
- robots.txt Generator for AI Bots — build a robots.txt with per-bot rules for all 28 known AI crawlers.
- AI Bot Log Analyzer — paste server logs and count real cohere-ai hits, entirely in your browser.
Related reading
- List of AI crawlers and their user agents — how cohere-ai fits among every other AI crawler, in one table.
- Can AI crawlers execute JavaScript? — whether cohere-ai sees content your site renders client-side.
- Should you block AI bots? — the full decision framework for Cohere and the rest.
Frequently asked questions
What is cohere-ai?
cohere-ai is Cohere's web crawler for collecting AI training data. Cohere's crawler used for training and grounding its models.
Does cohere-ai respect robots.txt?
Cohere publishes no official crawler documentation, so robots.txt compliance can't be verified; use firewall rules if blocking it matters to you.
How do I block cohere-ai?
Add "User-agent: cohere-ai" followed by "Disallow: /" to your robots.txt file. Because this bot's robots.txt compliance is not reliable, enforce the block with firewall or CDN rules (for example a Cloudflare WAF rule matching the user agent) if it matters to you.
Does blocking cohere-ai hurt my Google rankings?
No. cohere-ai is separate from Googlebot, which handles Google Search indexing. Blocking cohere-ai has no effect on your traditional search rankings.
How can I tell if cohere-ai is crawling my site?
Search your server access logs for the string "cohere-ai" — for example: grep -i "cohere-ai" /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 cohere-ai, with per-path breakdowns.
How do I use cohere-ai?
You don't — cohere-ai isn't a tool you run. It's Cohere's own crawler, operated by Cohere, 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 "cohere-ai" as your user agent would be impersonating Cohere.
Does cohere-ai 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. Cohere publishes no position on crawl-delay for cohere-ai, so treat it as unsupported. If cohere-ai 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 cohere-ai ignoring my robots.txt?
Cohere makes no enforceable commitment that cohere-ai honors robots.txt, so the plain answer may be that it simply does not. Before assuming that, rule out the ordinary causes: a cached copy of robots.txt from before your change, a user-agent line that does not actually match, or a block placed in a group this agent does not read. If the hits continue after those are excluded, robots.txt is not going to stop this agent and you need a firewall or CDN rule that returns 403.
Does cohere-ai execute JavaScript?
Treat it as no unless Cohere 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 cohere-ai. If your main content is client-rendered, server-render it or pre-render it so the text exists in the first response.
What are cohere-ai's IP ranges?
Cohere publishes no IP-range file for cohere-ai, 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 cohere-ai crawl my site?
There is no published schedule, and no operator commits to one. Training crawlers like cohere-ai 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 Cohere documentation for cohere-ai?
Cohere publishes no official documentation for cohere-ai. That absence is itself worth noting: an undocumented crawler gives you no stated policy to hold it to, and no published IP ranges to verify it against.
Other AI crawlers
- CCBotCommon Crawl's crawler; its dataset is widely used to train LLMs.
- BytespiderByteDance's crawler, used for training its AI models.
- Applebot-ExtendedControls use of content for training Apple's AI models (Apple Intelligence).
- Meta-ExternalAgentCrawls content to train Meta's AI models.
- AI2BotCrawls the web for the Allen Institute's open AI research models.
- ImagesiftBotCrawls images across the web for Hive's visual-AI products.
Part of our directory of every known AI crawler, refreshed monthly. Last verified: 2026-09-13.