AI crawler profile
What is DuckAssistBot? How to allow or block DuckDuckGo's crawler
User-agent string to match in robots.txt and server logs: DuckAssistBot
Operator
DuckDuckGo
Purpose
AI search & live answers
robots.txt
Respects robots.txt
Official docs
DuckAssistBot retrieves pages that DuckDuckGo's AI features (DuckAssist and Duck.ai integrations) summarize and cite in answers. Blocking it removes your content from those AI answers without affecting your regular DuckDuckGo search listings, which come from different sources.
Does DuckAssistBot respect robots.txt?
DuckDuckGo documents the agent and states it respects robots.txt.
Verify it's really DuckAssistBot
DuckDuckGo publishes no IP-range file for DuckAssistBot, 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 DuckAssistBot with robots.txt
User-agent: DuckAssistBot Disallow: /
Explicitly allow DuckAssistBot
User-agent: DuckAssistBot Allow: /
Block DuckAssistBot at the server or CDN
robots.txt is the right first step for DuckAssistBot, since DuckDuckGo 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 ~* "DuckAssistBot") {
return 403;
}RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} DuckAssistBot [NC]
RewriteRule .* - [F,L](http.user_agent contains "DuckAssistBot")
Find DuckAssistBot in your server logs
grep -i "DuckAssistBot" /var/log/nginx/access.log | wc -l
Should you block DuckAssistBot?
For most sites, no. DuckAssistBot powers visibility: blocking it removes your pages from the cited answers DuckDuckGo's assistant shows its users — the AI-era equivalent of de-indexing yourself from a search engine. Block it only if you deliberately don't want that audience. Our guide on blocking AI bots covers the trade-offs in detail.
Check and monitor DuckAssistBot on your site
- AI Crawler Access Checker — see whether your current robots.txt allows or blocks DuckAssistBot.
- 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 DuckAssistBot hits, entirely in your browser.
Related reading
- List of AI crawlers and their user agents — how DuckAssistBot fits among every other AI crawler, in one table.
- Can AI crawlers execute JavaScript? — whether DuckAssistBot sees content your site renders client-side.
- Should you block AI bots? — the full decision framework for DuckDuckGo and the rest.
Frequently asked questions
What is DuckAssistBot?
DuckAssistBot is DuckDuckGo's agent for AI search and live answers. Fetches pages to generate DuckDuckGo's AI-assisted answers.
Does DuckAssistBot respect robots.txt?
DuckDuckGo documents the agent and states it respects robots.txt.
How do I block DuckAssistBot?
Add "User-agent: DuckAssistBot" followed by "Disallow: /" to your robots.txt file. The change takes effect the next time the bot fetches your robots.txt.
Does blocking DuckAssistBot hurt my Google rankings?
No. DuckAssistBot is separate from Googlebot, which handles Google Search indexing. Blocking DuckAssistBot has no effect on your traditional search rankings, but it does remove your pages from the AI answers DuckDuckGo's assistant serves to its users.
How can I tell if DuckAssistBot is crawling my site?
Search your server access logs for the string "DuckAssistBot" — for example: grep -i "DuckAssistBot" /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 DuckAssistBot, with per-path breakdowns.
How do I use DuckAssistBot?
You don't — DuckAssistBot isn't a tool you run. It's DuckDuckGo's own crawler, operated by DuckDuckGo, 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 "DuckAssistBot" as your user agent would be impersonating DuckDuckGo.
Does DuckAssistBot 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. DuckDuckGo publishes no position on crawl-delay for DuckAssistBot, so treat it as unsupported. If DuckAssistBot 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 DuckAssistBot ignoring my robots.txt?
DuckDuckGo states DuckAssistBot 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 — DuckDuckGo 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 DuckAssistBot as its user agent, which anything can do.
Does DuckAssistBot execute JavaScript?
Treat it as no unless DuckDuckGo 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 DuckAssistBot. If your main content is client-rendered, server-render it or pre-render it so the text exists in the first response.
What are DuckAssistBot's IP ranges?
DuckDuckGo publishes no IP-range file for DuckAssistBot, 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 DuckAssistBot crawl my site?
There is no fixed schedule. DuckAssistBot serves live answers, so its crawl rate tracks demand — pages that come up in DuckDuckGo conversations get fetched more often, and a site nobody asks about may see it rarely or never. Frequency also rises with how often your pages change and how many links point at them. 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 DuckDuckGo documentation for DuckAssistBot?
DuckDuckGo publishes it at https://duckduckgo.com/duckduckgo-help-pages/results/duckassistbot/. That page is the authoritative source for the user-agent string and DuckDuckGo's stated crawling policy.
Other AI crawlers
- YouBotCrawls and fetches pages for You.com's AI search answers.
- TimpibotCrawler for Timpi's decentralized search index.
- OAI-SearchBotPowers search-style results surfaced in ChatGPT.
- ChatGPT-UserFetches pages a user asks ChatGPT to browse in real time.
- Claude-UserFetches pages on behalf of a user during a Claude conversation.
- Claude-SearchBotIndexes content to inform Claude's search-style answers.
Part of our directory of every known AI crawler, refreshed monthly. Last verified: 2026-09-13.