EzoicBot
Ezoic ad monetization platform crawler
About this crawler
EzoicBot is a web crawler identified by the regular-expression pattern EzoicBot in the User-Agent request header. It is categorised as advertising. Use the regex above to detect, log, allow, or block EzoicBot traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
0.065%
Technical details
- Name
- EzoicBot
- Pattern
EzoicBot- Tags
- advertising
- Reference
- https://www.ezoic.com:443/bot
- Added
- 2026/04/26
- Instances
- 2 known sample(s)
Sample User-Agent strings
Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36 (compatible; EzoicBot-UptimeOwl; +http://www.ezoic.com/bot)
Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36 (compatible; EzoicBot-Nicheiq; +http://www.ezoic.com/bot)
Block this crawler
robots.txt — disallow EzoicBot:
User-agent: EzoicBot
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} EzoicBot [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "EzoicBot") {
return 403;
}
← back to all crawlers