AI crawler profile
What is omgilibot? How to allow or block Webz.io's crawler
User-agent string to match in robots.txt and server logs: omgilibot
Operator
Webz.io
Purpose
AI model training
robots.txt
Respects robots.txt
Official docs
omgilibot (also seen as omgili) crawls for Webz.io, a web-data broker whose feeds — forums, reviews, news, and general web content — are licensed to enterprise customers including AI model builders. Blocking it is less about one AI product and more about opting out of a dataset resold downstream.
Does omgilibot respect robots.txt?
Webz.io documents the bot and states it honors robots.txt; as a data vendor its compliance is part of its sales pitch.
Verify it's really omgilibot
Webz.io publishes no IP-range file for omgilibot, 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 omgilibot with robots.txt
User-agent: omgilibot Disallow: /
Explicitly allow omgilibot
User-agent: omgilibot Allow: /
Block omgilibot at the server or CDN
robots.txt is the right first step for omgilibot, since Webz.io 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.
if ($http_user_agent ~* "omgilibot") {
return 403;
}RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} omgilibot [NC]
RewriteRule .* - [F,L](http.user_agent contains "omgilibot")
Find omgilibot in your server logs
grep -i "omgilibot" /var/log/nginx/access.log | wc -l
Should you block omgilibot?
Blocking omgilibot opts your content out of Webz.io'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 omgilibot on your site
- AI Crawler Access Checker — see whether your current robots.txt allows or blocks omgilibot.
- 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 omgilibot hits, entirely in your browser.
Related reading
- List of AI crawlers and their user agents — how omgilibot fits among every other AI crawler, in one table.
- Can AI crawlers execute JavaScript? — whether omgilibot sees content your site renders client-side.
- Should you block AI bots? — the full decision framework for Webz.io and the rest.
Frequently asked questions
What is omgilibot?
omgilibot is Webz.io's web crawler for collecting AI training data. Webz.io's crawler; its web-data feeds are sold to AI builders.
Does omgilibot respect robots.txt?
Webz.io documents the bot and states it honors robots.txt; as a data vendor its compliance is part of its sales pitch.
How do I block omgilibot?
Add "User-agent: omgilibot" followed by "Disallow: /" to your robots.txt file. The change takes effect the next time the bot fetches your robots.txt.
Does blocking omgilibot hurt my Google rankings?
No. omgilibot is separate from Googlebot, which handles Google Search indexing. Blocking omgilibot has no effect on your traditional search rankings.
How can I tell if omgilibot is crawling my site?
Search your server access logs for the string "omgilibot" — for example: grep -i "omgilibot" /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 omgilibot, with per-path breakdowns.
How do I use omgilibot?
You don't — omgilibot isn't a tool you run. It's Webz.io's own crawler, operated by Webz.io, 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 "omgilibot" as your user agent would be impersonating Webz.io.
Where is the official Webz.io documentation for omgilibot?
Webz.io publishes it at https://webz.io/bot.html. That page is the authoritative source for the user-agent string and Webz.io's stated crawling policy.
Part of our directory of every known AI crawler, refreshed monthly. Last verified: 2026-08-14.