Claritybot
Web analytics crawler
About this crawler
Claritybot is a web crawler identified by the regular-expression pattern Claritybot in the User-Agent request header. It is categorised as monitoring. Use the regex above to detect, log, allow, or block Claritybot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.26%
Technical details
- Name
- Claritybot
- Pattern
Claritybot- Tags
- monitoring
- Reference
- https://www.webrobots.de/bot/claritybot/
- Added
- 2026/05/03
- Instances
- 1 known sample(s)
Sample User-Agent strings
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0 ; Claritybot)
Block this crawler
robots.txt — disallow Claritybot:
User-agent: Claritybot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} Claritybot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "Claritybot") {
return 403;
}
← back to all crawlers