YandexBot
What YandexBot is, how to spot and verify it, the Yandex-only Clean-param directive, why Crawl-delay is dead, how it handles JavaScript, and how it compares to Googlebot and Bingbot.
1 evidence signal on this page
- Related live toolGooglebot Verifier
YandexBot is Yandex's main web crawler — the bot that discovers and fetches pages for Yandex Search, the engine with ~70%+ share in Russia. Its robots.txt token is YandexBot (main indexing bot only) vs. Yandex (the broader bot family). It supports a Yandex-only directive, Clean-param, that consolidates URL parameters with no Google/Bing equivalent — and it stopped honoring Crawl-delay on February 22, 2018 (some SEO guides still wrongly claim otherwise). JavaScript rendering is beta and 'at the bot's discretion,' and the 2023 source-code leak suggested there's no separate JS rendering system the way Google has one. Verify a real YandexBot by reverse-then-forward DNS to a yandex.ru/.net/.com host — the same technique Google and Bing use for their own bots — not by the user-agent string.
Evidence for this claim Yandex documents its search robots and their user-agent identifiers in Yandex Webmaster Help. Scope: Current official Yandex robot list. Confidence: high · Verified: Yandex Webmaster: Yandex robots Evidence for this claim Yandex provides an official method for checking whether an IP address belongs to a Yandex robot; a user-agent string alone can be spoofed. Scope: Current Yandex robot verification guidance. Confidence: high · Verified: Yandex Webmaster: Verify a robotTL;DR — YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. is the crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. for Yandex Search — the same job GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. does for Google and BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share. does for Bing. It visits your pages, downloads them, and adds them to Yandex’s indexStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed.. Whether you should care about it comes down to one question: do you have any audience or business in markets where Yandex is relevant? If yes, it matters. If no, it’s mostly just traffic in your logs.
What YandexBot is
When you see YandexBot in your server logsLog file analysis is reading a web server's raw access logs to see exactly which URLs search engine crawlers actually requested, when, how often, and what status code they got. Unlike crawl tools or Search Console, logs are the unsampled, ground-truth record of what really happened., that’s the crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. for Yandex —
the search engine that dominates search in Russia the way Google dominates most of
the rest of the world. Just like GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. and BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share., YandexBot follows links,
reads sitemapsA sitemap is a file that lists the pages, images, videos, and other files on your site so search engines can discover them. It helps discovery, but submitting a sitemap doesn't guarantee crawling or indexing., downloads your pages, and hands them off to be added to Yandex’s
search index.
The reason it gets its own article — instead of “just block all the non-Google bots” — is geography. Yandex is a rounding error worldwide, but in Russia it holds roughly 71% of the search market versus Google’s ~27% (StatCounter, June 2026). So if you sell to or serve people in Russia (and historically some nearby markets), YandexBot is your gateway to most of that search traffic.
How to spot it
The reliable identity check for YandexBot is a DNS lookup, not the user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. string — here’s why, and how it works.
YandexBot’s user-agent contains the word YandexBot. Yandex’s own documentation
lists the full string as:
Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268But that string alone doesn’t prove anything: anyone can fake it. Scrapers and bad bots routinely pretend to be YandexBot. So the user-agent is just a filter for which log lines are worth checking — the actual proof is a reverse-then-forward DNS lookup confirming the request came from a real Yandex host, the same technique Google and Bing use for their own crawlers (covered in the Advanced tab).
Should you block it?
This is the real question most people are asking. A quick way to think about it:
- You have Russia/CIS-facing business? Don’t block it — you’d be cutting yourself out of the dominant search engine there.
- You have zero Russia-facing audience and the crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. is straining your
server? Then blocking or slowing it is a reasonable call. You can tell it to
stay out with a couple of lines in your
robots.txt.
One caveat on the block side: a robots.txt rule is a request, not
enforcement. Yandex’s own docs warn that some of its robots may ignore robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere.
directives, so if you need guaranteed exclusion — not just “please don’t” — block
by verified IP at the server/firewall level instead (see the Advanced tab for which
Yandex bots this affects).
One important gotcha, and it’s the same trap as Google: putting a page in
robots.txt doesn’t remove it from Yandex’s search results — it just stops
Yandex from reading the page. Yandex says this in its own docs, and adds a
condition worth knowing: if you also block a page in robots.txt, Yandex “can’t
index them and detect your instructions” — meaning a noindex tag only works if
you let Yandex fetch the page to see it. Blocking crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. and adding noindex on
the same URL cancels the noindex out. To actually keep a page out, allow crawling
and add a noindex tag instead.
Want the technical version — the exact robots.txt tokens, Yandex’s unique Clean-param directive, how to verify a real YandexBot, and how it handles JavaScript? Switch to the Advanced tab.
Evidence for this claim Yandex documents its search robots and their user-agent identifiers in Yandex Webmaster Help. Scope: Current official Yandex robot list. Confidence: high · Verified: Yandex Webmaster: Yandex robots Evidence for this claim Yandex provides an official method for checking whether an IP address belongs to a Yandex robot; a user-agent string alone can be spoofed. Scope: Current Yandex robot verification guidance. Confidence: high · Verified: Yandex Webmaster: Verify a robotTL;DR — YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. is Yandex Search’s main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index.. Its
robots.txttokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory.YandexBottargets only the main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. bot;Yandextargets the broader bot family. It supports a Yandex-only directive, Clean-param, that consolidates URL parametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. — no Google/Bing equivalent — and it stopped honoringCrawl-delayon February 22, 2018 (use the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. tool instead; some SEO guides still wrongly claim Yandex supports Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading.). JavaScript renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. is performed at the crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index.’s discretion, so prefer SSR/pre-renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. for critical content.Disallow≠noindex(same trap as Google). Verify a real YandexBot by reverse-then-forward DNS to ayandex.ru/yandex.net/yandex.comhost — the same technique Google and Bing use — never the user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. string alone.
What YandexBot actually is
YandexBot is the primary web crawler for Yandex, the Russian search engine. It discovers URLs, fetches pages, and feeds Yandex’s index — the same role GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. and BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share. play for their engines. The user-agent string Yandex documents (on its “check that a robot belongs to Yandex” page) is:
Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268Yandex adds a useful caveat next to it: because “the browser’s version may change,”
it recommends not matching on a fixed Chrome version when you’re trying to
identify the bot. Match the YandexBot token, not Chrome/81.0.4044.268.
Crucially, “YandexBot” is really just the main indexing member of a family of
Yandex robots — YandexImages, YandexMetrika, YandexDirect, YandexMobileBot,
YandexAccessibilityBot, YandexRenderResourcesBot, YandexCalendar, and more — each
independently controllable in robots.txt. Many articles conflate “YandexBot” with
“all Yandex crawlers,” which is imprecise.
One more worth knowing about: Yandex’s server-logs table now documents
YandexAdditionalBot (and a near-duplicate token, YandexAdditional) as a robot
that “helps process robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. to prevent page content from appearing in Search
with Yandex AI responses,” applied to pages the main crawler has already indexed.
Per that same table, it doesn’t take the general User-agent: * rules into account
— so if you want to opt a page out of Yandex’s AI features specifically, you need
an explicit User-agent: YandexAdditionalBot block, the same pattern other
engines’ AI-crawler opt-outs use.
YandexBot vs. “Yandex” in robots.txt — they’re not the same token
This is Yandex’s most non-obvious robots.txt quirk, and it bites people migrating
from Google-centric technical SEOTechnical SEO is the practice of making a site easy for search engines to crawl, render, index, and (now) be eligible for AI answers. It's the foundation that lets your content and links rank — not a ranking trick of its own.. Start from Yandex’s own worked example — it
makes the scope split explicit, comments included:
User-agent: YandexBot # will be used only by the main indexing bot
Disallow: /*id=
User-agent: Yandex # will be used by all Yandex bots
Disallow: /*sid= # except the main indexing bot
User-agent: * # will not be used by Yandex bots
Disallow: /cgi-binRead literally, that example’s own comments are the documentation:
User-agent: YandexBot— used only by the main indexing bot.User-agent: Yandex— used by Yandex bots more broadly — but, per the example’s own comment on the second block, “except the main indexing bot.” The broader token isn’t universal even within the Yandex family.
Two things follow from Yandex’s rules here. First, precedence: “If the User-agent: Yandex string is detected, the User-agent: * string is ignored.” So a generic
User-agent: * block won’t apply to Yandex bots if you’ve also written a Yandex
block. Second — and this is the one that surprises security-minded readers — Yandex
warns that “Some Yandex robots may ignore directives in robots.txt, including
those for User-agent: Yandex.” Not every Yandex bot is guaranteed to obey a
blanket rule, which is one more reason server-level verification and blocking
matter for full exclusion.
Verifying it’s really YandexBot
Because the user-agent is spoofable, Yandex tells you to verify with DNS, exactly like Google and Bing do for their own crawlers. Yandex: “Some robots can disguise themselves as Yandex robots by indicating the relevant User AgentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target.. You can check the authenticity of a robot using a reverse DNS lookup.” The documented method:
- “Determine the IP address of the user agent in question using your server logs.”
- “Use a reverse DNS lookup of the IP address to determine the host domain name.”
- “Check whether the host belongs to Yandex. All Yandex robots have names ending
in
yandex.ru,yandex.netoryandex.com.” (If the host name has a different ending, it isn’t Yandex.) - “Make sure that the name is correct. Use a forward DNS lookup to get the IP address corresponding to the host name. It should match the IP address used in the reverse DNS lookup.”
And the fail condition, in Yandex’s words: “If the IP addresses do not match, it means that the host name is fake.” Yandex also mentions an official “IP address check tool” as an alternative to running the lookups by hand.
This is the same forward-confirmed reverse-DNS (FCrDNS) pattern all three major
engines land on — Google verifies against googlebot.com/google.com/
googleusercontent.com, Bing against *.search.msn.com, and Yandex against
yandex.ru/yandex.net/yandex.com. None of them treat a published IP list as
trustworthy enough on its own. The commands are in the Scripts tab; the domain
suffixes are the only thing that changes between engines. (For the Google and Bing
versions, see the Googlebot and Bingbot siblings.)
Controlling YandexBot with robots.txt
Yandex recognizes a familiar core set of directives, each defined in its own docs:
- User-agent — “Indicates the robot to which the rules listed in
robots.txtapply.” - Disallow — “Prohibits crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. of sections or individual pages of the site.”
- Allow — “Allows indexing site sections or individual pages.”
- SitemapA sitemap is a file that lists the pages, images, videos, and other files on your site so search engines can discover them. It helps discovery, but submitting a sitemap doesn't guarantee crawling or indexing. — “Specifies the path to the
Sitemapfile that is posted on the site.” - Clean-param — “Indicates to the robot that the page URL contains parameters (like UTM tags) that should be ignored when indexing it.” (Yandex-only — see below.)
A few file requirements worth knowing: the file must be “a TXT file named
“robots”, robots.txt,” its size must not exceed 500 KB, and the server must
return an HTTP 200 OKHTTP 200 OK is the standard 2xx success status code, meaning the server received, understood, and fulfilled the request and is returning the resource. It's the code every page you want indexed should return — but a 200 alone doesn't guarantee Google will index the page. status for it to be read.
Disallow ≠ noindex — the same trap as Google
The single most misunderstood robots.txt fact carries straight over to Yandex, and
Yandex states it plainly: “Pages restricted in robots.txt can participate in
Yandex search. To remove pages from search, specify the noindex directive in the
HTML code of the page or configure the HTTP header.” In other words, Disallow
controls crawling, not indexing — a disallowed URL can still show up in Yandex’s
results. This is the same conceptual trap Google has (I’ve written it up for Google
in Indexed, though blocked by robots.txt),
and the fix is identical: to actually remove a page, allow crawling and add
noindex. Yandex spells out exactly why in the same section: “Do not restrict
such pages in robots.txt, or the Yandex bot can’t index them and detect your
instructions.” An index-control directive only works if the crawler can fetch the
page to see it — Disallow and noindex on the same URL is a contradiction: the
Disallow stops Yandex from ever reading the noindex tag, so the page stays
exactly where it was.
Clean-param — Yandex’s unique parameter directive
Clean-param is the single most Yandex-specific directive for an audience used to Google and Bing, and it has no Google or Bing equivalent. Its purpose, per Yandex: “The Yandex robot uses this directive to avoid reloading duplicate information. This improves the robot’s efficiently and reduces the server load.” (That “efficiently” is a genuine typo on Yandex’s live page — I’m quoting it as-is rather than silently fixing it.)
The problem it solves: “The new parameter that doesn’t affect the page content may result in duplicate pages that should not be included in the search.” The syntax:
Clean-param: p0[&p1&p2&..&pn] [path]Yandex’s own worked example — three URLs that differ only by a ref tracking
parameter:
www.example.com/some_dir/get_book.pl?ref=site_1&book_id=123
www.example.com/some_dir/get_book.pl?ref=site_2&book_id=123
www.example.com/some_dir/get_book.pl?ref=site_3&book_id=123…collapse to one canonical URL (www.example.com/some_dir/get_book.pl?book_id=123)
with a single directive:
User-agent: Yandex
Clean-param: ref /some_dir/get_book.plTwo details make Clean-param easy to get wrong. First, “The Clean-param directive
does not require mandatory combination with the Disallow directive” — it stands on
its own; you don’t Disallow the parameter URLs. Second, it’s intersectional:
per Yandex it “is intersectional, so it can be specified anywhere in the file,
regardless of the location.” Unlike Allow/Disallow, which are anchored to a
path, Clean-param is a global directive you can drop anywhere in the file.
Yandex also notes it may handle some parameters automatically: “Parameters for analytics and tracking that don’t affect the page content may be automatically removed by the search engine if the algorithms determine that those parameters are insignificant.” But relying on Clean-param for the ones that matter to you is the deterministic move. This is the Yandex analog to how Google now leans on canonicalizationHow search engines pick one canonical URL among duplicates and consolidate signals onto it. signals (canonical tagA rel=\"canonical\" annotation — in the HTML <head> or an HTTP Link header — that tells search engines which URL is the preferred version of duplicate or near-duplicate content., internal linkingLinks between pages on the same site.) since it deprecated its old URL ParametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. tool — Yandex just gives you an explicit robots.txt directive where Google doesn’t.
Crawl-delay is dead (since Feb 2018)
If you’ve read that Crawl-delay works in Yandex’s robots.txt, that information is
stale. Yandex’s own dedicated page is unambiguous: “From February 22, 2018, Yandex
doesn’t take into account the Crawl-delay directive.”
This is worth flagging because at least one widely-read SEO resource still says the
opposite. Ahrefs’ robots.txt guide (authored by Joshua Hardwick, not me) currently
states “Google no longer supports this directive, but Bing and Yandex do.” On
the Yandex half, that’s contradicted by Yandex’s own current documentation. I’d
treat Yandex’s dedicated, dated page as authoritative here — but the broader lesson
is the useful one: verify a crawl-behavior claim against the engine’s live docs
before you trust a secondhand guide, because these details drift and even good
sources go stale. (Note the contrast with Bing, which does still honor
crawl-delay — one of the real Bingbot/YandexBot divergences.)
The replacement is the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. setting in Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine., which lets you influence how fast YandexBot fetches your site. (Yandex’s Crawl-delay page is essentially one sentence plus a pointer to that setting.)
How YandexBot handles JavaScript
Yandex’s JavaScript rendering is explicitly labeled beta (β) by Yandex itself, and the default behavior is “at the bot’s discretion” — the bot “will independently determine whether to execute JavaScript code on the site’s pages.” When it does, it may “assess the quality and completeness of the content on the pages with and without JavaScript” and serve whichever version is likely more useful to the visitor.
There’s a meaningful tension worth surfacing. The 2023 Yandex source-code leak (exposed internal engineering docs, not an official statement — I’ll cover it more below) suggested a simpler picture. As Mike King wrote in his Search Engine Land analysis of the leak: “Yandex has no separate rendering system for JavaScript. They say this in their documentation and, although they have Webdriver-based system for visual regression testing called Gemini, they limit themselves to text-based crawl.” (That internal “Gemini” is a Yandex visual-regression testing tool — completely unrelated to Google’s Gemini AI model, despite the shared name. Worth disambiguating so nobody conflates the two.) And Dan Taylor’s Search Engine Journal write-up concluded there’s “nothing new to suggest Yandex can crawl JavaScript yet outside of already publicly documented processes.”
So the honest answer is neither “YandexBot renders JS just like Googlebot” nor “YandexBot never touches JavaScript.” It’s selective and beta, by Yandex’s own description. The leak’s “no separate rendering system” account is consistent with that framing, but it’s leaked internal material relayed through industry coverage, not a Yandex disclosure — so treat “architecturally simpler than Google” as a plausible reading of two consistent signals, not a documented fact. Don’t take either account on faith for a route that matters to you; test it directly:
- Rendered output: fetch the page with JavaScript disabled and compare it to the JS-rendered version. If the two differ meaningfully, don’t assume Yandex saw the rendered one.
- Resource access: confirm the JS, CSS, and API endpoints the page depends on
aren’t blocked in
robots.txt. Yandex’sYandexRenderResourcesBotfetches render-time resources, but (per Yandex’s own documentation of it) only for pages the main indexing bot can already reach — a blocked resource on an allowed page still won’t load. - Delayed and interactive content: anything that loads after the
DOMContentLoadedevent or behind a click isn’t guaranteed to render. Yandex’s advanced rendering settings (window.YandexRotorSettings) exist specifically for sites where “content loads with a delay” — that’s a signal worth reading, not just a config option.
The practical takeaway: Yandex’s own docs recommend you “Prohibit rendering if SSR (Server-Side Rendering) or pre-rendering is implemented on the site,” and note that “Executing JavaScript code may create additional load on your server.” If you want reliable Yandex indexing of JS-heavy content, serve it server-side rather than testing your luck on client-side rendering.
For AJAX-style sites, Yandex says “When indexing an AJAX site, the Yandex bot scans
the original URLs and executes JavaScript code on them” — and it has moved away
from the old HTML-snapshot hack: if you still use the deprecated
meta name="fragment" approach, “the bot will ignore it and index the original page.”
Its modern recommendation mirrors Google’s: “If the links on AJAX pages use the #
character, change the addresses to URLs without this character. For example, you may
use the History API.”
What the 2023 source-code leak revealed about the crawler
In January 2023, Yandex’s internal source code leaked — a well-corroborated event covered across Search Engine Land, Search Engine Journal, and others. Treat this as leaked internal documentation, not a Yandex statement, but it exposed real detail about how the crawler works. Per Mike King’s SEL analysis: “Yandex’s documentation discusses a dual-distributed crawler system. One for real-time crawling called the ‘Orange Crawler’ and another for general crawling.” He drew a parallel to Google, which “is said to have had an index stratified into three buckets, one for housing real-time crawl, one for regularly crawled and one for rarely crawled.” Both engines, in other words, appear to embrace segmented crawling driven by how often content updates.
The leak also tied crawling directly to site architectureSite architecture is how a website's pages are organized, categorized, and interlinked. It controls how crawlers discover pages, how link equity flows, and how clearly search engines understand each page's topical context. Silo structure, hub and spoke, and topic clusters are the three common models.. Per Dan Taylor’s SEJ coverage, “URLs that are reachable from the homepage have a ‘higher’ level of importance.” That’s a clean bridge from “crawler mechanics” to “why internal linking matters” — the same crawl depthCrawl depth usually means click depth — how many clicks it takes to reach a page from the homepage by following internal links. It can also mean a crawler setting that limits how many levels deep a crawl goes before it stops. logic that applies to Googlebot.
(For scale: coverage noted the widely-cited “1,922 ranking factors” figure was specific to one archive file, with the fuller codebase reportedly containing far more across multiple files — keep a date and a source on any specific number if you cite one.)
Why YandexBot still matters — and how common it is in robots.txt
Yandex’s global share is tiny, but its Russia share is not: ~71% in Russia vs. Google’s ~27% as of June 2026 (StatCounter). That stability is the entire reason YandexBot deserves separate treatment. If you have any Russia/CIS-facing business, blocking YandexBot forecloses the dominant engine in that market.
How often do sites even bother configuring for it? Rarely, but rising. In the Web Almanac 2022 SEO chapter (I was a reviewer that year; I was lead author of the 2021 chapter): YandexBot appeared in “just 0.5% of robots.txt files in 2021. By 2022, there was a six-fold increase, with 3% of files specifying Yandexbot.” Small, but a clear upward trend — and a useful “how common is this in the wild” baseline.
If you’re deciding whether to block it, the honest framing is a business question, not a technical one — and it’s a real debate that plays out in webmaster forums. For the broader mechanics YandexBot lives inside — URL discoveryURL discovery is how search engines find URLs to crawl — by pull (following links and reading sitemaps) and by push (you notify them via IndexNow, the Indexing API, or WebSub). It's the find step that comes before a page is ever fetched., the crawl scheduler, rendering, and the crawl-vs-index-vs-rank distinctions — see the crawling hub. And for configuring Yandex specifically as part of a Russia/CIS strategy, the international-SEO and market-specific-SEO material ties it together.
AI summary
A condensed take on the Advanced version:
- YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. = Yandex Search’s main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. — the Yandex equivalent of
GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer./BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share.. UA string:
Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268(don’t match on the Chrome version — it changes). - Two robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. tokensA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory., different scopes:
YandexBot= main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. bot only;Yandex= the broader bot family. AUser-agent: Yandexblock makes Yandex ignoreUser-agent: *. Some Yandex bots may ignore robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. entirely. - Clean-param is Yandex-only — consolidates URL parametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. that don’t change
content (no Google/Bing equivalent). It doesn’t require
Disallow, and it’s intersectional (can go anywhere in the file). - Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading. is dead — Yandex stopped honoring it on February 22, 2018; use the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. tool instead. Some SEO guides still wrongly claim Yandex supports it. (Bing does; Yandex doesn’t.)
Disallow≠noindex— disallowed pages “can participate in Yandex search.” Usenoindex(meta or HTTP header) to actually remove a page.- JavaScript renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. is beta and “at the bot’s discretion.” The 2023 leak suggested “no separate rendering system for JavaScript” — so it’s selective and simpler than Google’s two-wave pipeline. Prefer SSR/pre-rendering; avoid hash-bang URLs (use the History API).
- 2023 source-code leak (leaked, not official): revealed a dual-crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. system (real-time “Orange Crawler” + general crawler) and that homepage-reachable URLs carry higher importance (crawl-depth as a signal).
- Verify with reverse-then-forward DNS to a
yandex.ru/yandex.net/yandex.comhost — the same FCrDNS technique Google and Bing use — never the spoofable user-agent. - Why care: ~71% Russia search share (vs. Google ~27%, June 2026). Tiny globally, dominant regionally. In robots.txt: ~0.5% of files (2021) → 3% (2022) per the Web Almanac.
Official documentation
Primary-source documentation, mostly from Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine. Help, with Google/Bing contrast links. Heads up: several Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine. tool pages (Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor., the robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. analyzer) are app pages that need a logged-in browser to see fully, and Google’s/Bing’s verification pages are JavaScript-rendered — confirm details live if a link bounces.
Yandex
- The User-agent directive — the
YandexBotvs.YandextokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. scoping and precedence rules. - How to check that a robot belongs to Yandex — the full user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. string and the reverse-DNS verification method.
- Using robots.txt — the directives Yandex recognizes, the 500 KB / HTTP 200HTTP 200 OK is the standard 2xx success status code, meaning the server received, understood, and fulfilled the request and is returning the resource. It's the code every page you want indexed should return — but a 200 alone doesn't guarantee Google will index the page. file requirements, and the
Disallow≠ indexStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. note. - The Clean-param directive — Yandex’s unique parameter-consolidation directive (syntax + worked example).
- The Crawl-delay directive — the page stating Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading. has been ignored since February 22, 2018.
- Site crawl rate — the Crawl-delay replacement in Yandex Webmaster.
- Indexing pages with JavaScript (β) — the “at the bot’s discretion” default and the SSR recommendation.
- Indexing AJAX sites — JS execution on original URLs and the History-API recommendation.
Google / Bing (for contrast)
- Verify Requests from Google Crawlers and Fetchers — Google’s reverse/forward-DNS method (against
googlebot.com/google.com/googleusercontent.com) — the same FCrDNS pattern Yandex uses. - Which crawlers does Bing use? — Bing’s crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. list; Bing verifies against
*.search.msn.comand still honorscrawl-delay(Yandex doesn’t).
Quotes from the source
On-the-record statements from Yandex’s own documentation, plus the leaked-internal material relayed through industry coverage. Each link is a deep link that jumps to the quoted passage. Yandex’s docs are English translations published by Yandex itself — quoted verbatim from those pages.
Yandex — robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. tokensA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. and precedence
- “If the
User-agent: Yandexstring is detected, theUser-agent: *string is ignored.” Jump to quote - “Some Yandex robots may ignore directives in
robots.txt, including those forUser-agent: Yandex.” Jump to quote - “
YandexAdditionalBot… Helps process robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. to prevent page content from appearing in Search with Yandex AI responses. Applies to the pages that have been indexedStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. by the primary crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index..” Jump to quote
Yandex — verifying the bot
- “Some robots can disguise themselves as Yandex robots by indicating the relevant User AgentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target.. You can check the authenticity of a robot using a reverse DNS lookup.” Jump to quote
- “Check whether the host belongs to Yandex. All Yandex robots have names ending in
yandex.ru,yandex.netoryandex.com.” Jump to quote - “If the IP addresses do not match, it means that the host name is fake.” Jump to quote
Yandex — robots.txt and Clean-param
- “Pages restricted in
robots.txtcan participate in Yandex search. To remove pages from search, specify thenoindexdirective in the HTML code of the page or configure the HTTP header.” Jump to quote - “The Yandex robot uses this directive to avoid reloading duplicate information. This improves the robot’s efficiently and reduces the server load.” [sic — “efficiently” is Yandex’s own typo] Jump to quote
- “The Clean-param directive does not require mandatory combination with the Disallow directive.” Jump to quote
- “Do not restrict such pages in
robots.txt, or the Yandex bot can’t index them and detect your instructions.” Jump to quote
Yandex — Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading. and JavaScript
- “From February 22, 2018, Yandex doesn’t take into account the Crawl-delay directive.” Jump to quote
- “Prohibit renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. if SSR (Server-Side RenderingTurning HTML, CSS, and JavaScript into the final visual page and DOM.) or pre-rendering is implemented on the site.” Jump to quote
- “When indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. an AJAX site, the Yandex bot scans the original URLs and executes JavaScript code on them.” Jump to quote
The 2023 Yandex source-code leak (leaked internal documentation, relayed via industry coverage — not an official Yandex statement)
- “Yandex has no separate rendering system for JavaScript. They say this in their documentation and, although they have Webdriver-based system for visual regression testing called Gemini, they limit themselves to text-based crawl.” — Mike King, iPullRank, via Search Engine Land. Read the coverage
- “Yandex’s documentation discusses a dual-distributed crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. system. One for real-time crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. called the ‘Orange Crawler’ and another for general crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor..” — Search Engine Land. Read the coverage
- “There’s nothing new to suggest Yandex can crawl JavaScript yet outside of already publicly documented processes.” — Dan Taylor, via Search Engine Journal. Read the coverage
Web Almanac 2022, SEO chapter (I was a reviewer)
- “YandexbotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. was specified in just 0.5% of robots.txt files in 2021. By 2022, there was a six-fold increase, with 3% of files specifying Yandexbot.” Jump to quote
Should I block, allow, or throttle YandexBot?
The YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. question is almost always a business question wearing a technical costume. Work through it.
What to do about YandexBot in your logs
YandexBot myths and mistakes to avoid
The traps that come up most often — several are widely-repeated and worth correcting:
- “Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading. slows YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. down.” No. Yandex stopped honoring
Crawl-delayon February 22, 2018 (“Yandex doesn’t take into account the Crawl-delay directive”). Some SEO guides still claim Yandex supports it — that’s stale. Use the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. setting in Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine. instead. (Do-instead: verify crawl-behavior claims against Yandex’s live docs, and throttle via Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor., not Crawl-delay.) - “
Disallowin robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. removes the page from Yandex.” No — Yandex’s own docs say disallowed pages “can participate in Yandex search.”Disallowstops crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor., not indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed.. (Do-instead: usenoindexin the HTML or an HTTP header to actually exclude a page; let Yandex crawl it so it can see the tag.) - “
User-agent: YandexBotandUser-agent: Yandexare the same thing.” No —YandexBottargets only the main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. botA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index.;Yandextargets the broader family. And aUser-agent: Yandexblock makes Yandex ignore yourUser-agent: *block entirely. (Do-instead: pick the tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. that matches the scope you actually intend, and don’t assume*rules reach Yandex bots.) - “YandexBot renders JavaScript just like GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer..” Not established. Yandex’s renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. is beta and “at the bot’s discretion,” and the 2023 leak suggested “no separate rendering system for JavaScript.” (Do-instead: serve JS-dependent content via SSR/pre-rendering rather than assuming client-side rendering will be indexed.)
- “The user-agent string proves it’s YandexBot.” No — it’s trivially spoofed.
(Do-instead: verify with reverse-then-forward DNS to a
yandex.ru/yandex.net/yandex.comhost, exactly as you’d verify Googlebot or BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share..) - “Any YandexBot traffic on a non-Russian site is inherently suspicious/fake.”
Not necessarily — legitimate YandexBot crawls globally-facing sites too, not just
.rudomains. (Do-instead: verify by DNS before deciding it’s spoofed; a real Yandex host is real regardless of your audience.) - “The 2023 leak proved Yandex has a secret superior JS crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index..” No — coverage concluded there’s “nothing new to suggest Yandex can crawl JavaScript yet outside of already publicly documented processes.” (Do-instead: don’t over-read the leak; it corroborated the limited-rendering picture, it didn’t overturn it.)
YandexBot — cheat sheet
User-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. string (main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. botA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index.)
Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268Match on the YandexBot tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory., not the Chrome/81.0.4044.268 version — Yandex
says the browser version may change.
The two robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. tokens
| Token | Scope |
|---|---|
User-agent: YandexBot | The main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. bot only |
User-agent: Yandex | Yandex’s broader bot family |
A User-agent: Yandex block causes Yandex to ignore your User-agent: * block.
Some Yandex bots may ignore robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. entirely.
Directives Yandex recognizes
| Directive | What it does |
|---|---|
User-agent | Which robot the rules apply to |
Disallow | Prohibits crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. (not indexing) |
Allow | Allows crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor./indexing of sections or pages |
Sitemap | Path to the sitemap fileA sitemap is a file that lists the pages, images, videos, and other files on your site so search engines can discover them. It helps discovery, but submitting a sitemap doesn't guarantee crawling or indexing. |
Clean-param | Yandex-only — ignore listed URL parametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. (no Google/Bing equivalent) |
Clean-param quick form
User-agent: Yandex
Clean-param: ref /some_dir/get_book.plConsolidates ?ref=… variants to one URL. Doesn’t need Disallow; intersectional
(can go anywhere in the file).
Verify vs. Google vs. Bing (all use forward-confirmed reverse DNS)
| Engine | Reverse-DNS host must end in |
|---|---|
| Yandex | yandex.ru / yandex.net / yandex.com |
googlebot.com / google.com / googleusercontent.com | |
| Bing | *.search.msn.com |
Fast facts
- Crawl-delay: dead since Feb 22, 2018 — use the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. tool. (Bing
still honors
crawl-delay; Yandex doesn’t.) robots.txtmust be namedrobots.txt, be ≤ 500 KB, and return HTTP 200.- JavaScript renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM.: beta, “at the bot’s discretion” — prefer SSR.
- Russia share: ~71% (vs. Google ~27%), June 2026 (StatCounter).
- In robots.txt: 0.5% (2021) → 3% (2022) of files (Web Almanac).
Verify a bot is really YandexBot
The user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. is trivially spoofed, so confirm with a reverse-DNS lookup (must end
in a Yandex domain) followed by a forward-DNS lookup (must resolve back to the same
IP). This is the exact FCrDNS pattern you’d use for GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. or BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share. — only the
domain suffixes differ (yandex.ru / yandex.net / yandex.com).
macOS / Linux
# 1) Reverse-DNS the IP from your logs — the host must end in
# yandex.ru, yandex.net, or yandex.com
host 5.255.253.1
# → 1.253.255.5.in-addr.arpa domain name pointer <something>.yandex.com (illustrative)
# 2) Forward-DNS that hostname back — it must resolve to the same IP
host <the-hostname-from-step-1>.yandex.comWindows
nslookup 5.255.253.1
nslookup <the-hostname-from-step-1>.yandex.comIf the reverse lookup doesn’t end in a Yandex domain, or the forward lookup doesn’t return the original IP, it isn’t YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. — drop or rate-limit it.
Extract verified-vs-spoofed YandexBot hits from a log file
A quick shell pass to pull “YandexBot” lines and check each source IP’s PTR. Adjust field positions for your log format (this assumes a common combined format with the IP first).
# Pull unique IPs that claimed to be YandexBot, then reverse-resolve each
grep -i 'YandexBot' access.log \
| awk '{print $1}' | sort -u \
| while read ip; do
host="$(host "$ip" 2>/dev/null | awk '/pointer/{print $NF}' | sed 's/\.$//')"
case "$host" in
*.yandex.ru|*.yandex.net|*.yandex.com) echo "REAL $ip $host" ;;
"" ) echo "NO-PTR $ip" ;;
* ) echo "FAKE $ip $host" ;;
esac
doneREAL lines still deserve a forward-lookup confirmation for anything you’ll act on
(host "$host" should return the original IP), but this triages the obvious
impostors first.
Regex to match the YandexBot token in a user-agent
Match the product tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory., not the Chrome version (which changes). Case-insensitive:
YandexBot/\d+(\.\d+)?Broader “any Yandex robot” match (catches YandexImages, YandexMobileBot, etc.):
Yandex[A-Za-z]*/\dRemember: a matching user-agent is necessary but not sufficient — pair any regex match with the DNS check above before trusting it.
A robots.txt starting point for Yandex
# Slow/duplicate-parameter cleanup for all Yandex bots
User-agent: Yandex
Clean-param: utm_source&utm_medium&utm_campaign /
# Block only the main indexing bot from a low-value space
User-agent: YandexBot
Disallow: /internal-search/
Sitemap: https://example.com/sitemap.xmlRemember: Disallow blocks crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor., not indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. — use noindex to remove a
page from Yandex search. To fully block all Yandex botsA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. (some ignore robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere.),
block by verified IP at the server.
YandexBot readiness checklist
A quick pass to confirm you’re handling YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. deliberately, not by accident:
- You’ve decided whether Yandex matters for your site (any Russia/CIS audience or business?) — the whole block/allow question hinges on this.
- BotA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. verification uses reverse + forward DNS to a
yandex.ru/yandex.net/yandex.comhost — not the spoofable user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target., and not a hardcoded IP list. - You’re using the right robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. tokenA token is the smallest unit of text (or image/audio/video) an LLM processes — roughly 4 characters, or about ¾ of an English word. A context window is the maximum number of tokens (input plus output) a model can hold at once, like its short-term memory. for your intent:
YandexBot(main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. bot only) vs.Yandex(the broader family). - You know a
User-agent: Yandexblock makes Yandex ignore yourUser-agent: *block. - You’re not relying on
Crawl-delay(dead since Feb 22, 2018) — throttle via the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. tool in Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine. instead. - You’re not using
Disallowto deindexDeindexing means getting a URL to stop appearing in Google's search results. There's no single delete button — the right method depends on whether you own the page, whether removal is temporary or permanent, and whether the content should still exist. — that’snoindex’s job (with crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. allowed). - Duplicate URL parametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. are consolidated with Clean-param where relevant
(it doesn’t need
Disallow, and it can go anywhere in the file). - JS-dependent content is served via SSR/pre-renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM., since Yandex’s rendering is beta and “at the bot’s discretion.”
- AJAX routes use clean URLs / the History API, not hash-bang (
#!) URLs. - For full exclusion of all Yandex bots (some ignore robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere.), you’re blocking by verified IP at the server, not just in robots.txt.
Patrick's relevant free tools
- hreflang Generator + Linter — Enter your URL × locale matrix and get bidirectional hreflang markup as head tags, sitemap XML (auto-split past 50,000 URLs), and Link headers — linted live for wrong region codes, duplicates, and missing fallbacks. Runs entirely in your browser.
- returntag - hreflang checker — Enter one URL or an XML sitemap and the returntag - hreflang checker crawls the whole hreflang cluster — missing return tags, broken targets, self-reference and x-default checks, language-code validation, and head vs Link header vs sitemap disagreements — on an interactive cluster map with CSV export. The check Search Console's International Targeting report used to run.
- robots.txt Tester — Test pages against bots with a matcher ported from Google's open-source robots.txt parser — a blocked/allowed matrix with the exact winning rule per cell, file lint, sitemap-conflict detection, a diff mode for proposed changes, and a separate live robots.txt fetch for each entered origin.
Tools for verifying and monitoring YandexBot
The two jobs that come up most with YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. are confirming a hit is real and seeing how much it’s actually crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. you. Start here:
- Googlebot Verifier — paste an IP from your logs and it runs
the forward-confirmed reverse-DNS check for you (the same method Yandex documents
for confirming a
yandex.ru/yandex.net/yandex.comhost), naming the real network owner when it’s a spoofer instead. Faster than runninghost/nslookupby hand for every suspicious hit, and it also covers GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer., BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share., and the major AI crawlersAI crawlers are bots from AI companies that fetch web pages to train language models, build AI-search indexes, or answer live user questions. They come in three categories, each with its own user-agent tokens and its own robots.txt controls. if you’re checking a mixed log. - Log File Analyzer — drop in a server access log (nginx, Apache, IIS/W3C, or JSON) and see YandexBot’s actual crawl footprint: how much of your site it’s hitting, which sections, status-code waste, and a spoofer report flagging IPs that claim to be YandexBot but don’t check out. Useful for the “is this crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor. actually straining my server” question from the decision tree above — everything runs in your browser, nothing is uploaded.
From Yandex itself
- Yandex WebmasterYandex Webmaster (webmaster.yandex.com) is Yandex's free search console — the Yandex equivalent of Google Search Console — for verifying a site, monitoring indexing and queries, requesting reindexing, running diagnostics, and setting a site region. It's essential for any site targeting Russia and the wider CIS, where Yandex, not Google, is the dominant search engine. — the Crawl rateCrawl rate is how fast a search engine crawler fetches pages from your site — the number of simultaneous requests it makes and the delay between them. Google sets it automatically based on your server's health; it's the supply side of crawl budget, not a ranking factor. setting (the Crawl-delayCrawl-delay is a non-standard robots.txt directive that asks bots to wait between successive page fetches to ease server load. Google has ignored it since September 1, 2019 and Yandex dropped it on February 22, 2018; Bing and many other crawlers still honor it, but Bing interprets the value differently than the plain reading. replacement) and the robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. analyzer live here; you’ll need a verified, logged-in Yandex Webmaster account to use either.
Resources worth your time
My related writing
- Indexed, though blocked by robots.txt — why a robots-blocked URL still gets indexedStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed.; the same
Disallow≠noindextrap applies to Yandex. - Robots.txt and SEO: Everything You Need to Know — the general robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. reference (note: its Yandex
Crawl-delayclaim is outdated, per Yandex’s own dated docs — a good example of verifying against the source). - The Story of Blocking 2 High-Ranking Pages With Robots.txt — my first-party experiment on what actually happens when you block ranking pages.
- Meet the New Web Crawlers: AI Bots Are Closing in on Search Engine Bots — how the crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. cast in your logs has changed.
- The SEO Bots That ~140 Million Websites Block the Most — my study with Xibeijia Guan on robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. block rates (it covers Western SEO-tool bots, not YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. — cited for the methodology and as a contrast to how rarely sites configure for Yandex).
My speaking
- How Search Works (SlideShare) — my walkthrough of crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor., renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM., indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed., and ranking. (Standing disclaimer applies: “This is my understanding of systems… not going to be 100% complete or accurate.”)
From around the industry
- Yandex scrapes Google and other SEO learnings from the source code leak (Mike King / iPullRank, Search Engine Land, Jan 30, 2023) — the “Orange CrawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index.” dual-crawler system and “no separate renderingTurning HTML, CSS, and JavaScript into the final visual page and DOM. system for JavaScript” findings.
- Yandex Data Leak: The Ranking Factors & The Myths We Found (Dan Taylor, Search Engine Journal, Feb 1, 2023) — the crawl-depth-as-importance signal and the “nothing new on JavaScript crawlingCrawling is how search engines use automated bots (like Googlebot and Bingbot) to discover URLs and download pages. A page has to be crawlable to be indexed, but crawling on its own isn't a ranking factor.” conclusion.
- Yandex ‘leak’ reveals 1,922 search ranking factors (Search Engine Land) — context and dating for the leak’s scale.
- Does the Yandex Code Leak Tell Us Anything About Google? (seoClarity) — a measured cross-engine read of the leak.
- The Ultimate Guide to Yandex SEO (Search Engine Journal) — broader Yandex-optimization context beyond the crawler.
- Web Almanac 2022 — SEO chapter (HTTP Archive) — the source of the YandexBot-in-robots.txt adoption stat.
Stats worth citing
- ~71% Russia search share — Yandex’s share of the Russian search market versus Google’s ~27%, per StatCounter (data reported for June 2026; time-sensitive, so cite the month/year and expect drift). This is the entire reason YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have. warrants separate treatment from “block all non-Google botsGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer..” Source
- 0.5% → 3% of robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. files — YandexBot went from being specified in “just 0.5% of robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. files in 2021” to “3% of files specifying Yandexbot” in 2022 — a six-fold increase, though still small (Web Almanac 2022 SEO chapter, which I reviewed). Useful as a historical baseline for “how common is this in the wild.” Source
- February 22, 2018 — the date Yandex stopped honoring
Crawl-delay, per its own documentation. A precise, citable deprecation date to counter stale guides claiming Yandex still supports the directive. Source
Test yourself: YandexBot
Five quick questions on YandexBotYandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have., its robots.txtA plain-text file at the root of a host that tells crawlers which URLs they may and may not request. It controls crawling, not indexing — a blocked URL can still be indexed if it's linked from elsewhere. behavior, and how it compares to GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. and BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share.. Pick an answer for each, then check.
YandexBot
YandexBot is the main web crawler operated by Yandex, Russia's dominant search engine. It discovers and fetches pages for Yandex Search, is one of a family of Yandex robots, and supports a Yandex-only robots.txt directive (Clean-param) that Google and Bing don't have.
Related: Crawling, Crawler, User Agent
YandexBot
YandexBot is the primary web crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. for Yandex, the search engine that still holds roughly 70%+ of the search market in Russia. It’s the Yandex equivalent of GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer. and BingbotBingbot is Microsoft Bing's primary web crawler — the bot that discovers, fetches, and renders pages to build the Bing index. That index also powers Yahoo, DuckDuckGo, Ecosia, and Microsoft Copilot, so Bingbot's reach is far wider than Bing's own search-market share.: it discovers URLs (through links and sitemapsA sitemap is a file that lists the pages, images, videos, and other files on your site so search engines can discover them. It helps discovery, but submitting a sitemap doesn't guarantee crawling or indexing.), downloads pages, and hands them off to be indexedStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. for Yandex Search. In server logsLog file analysis is reading a web server's raw access logs to see exactly which URLs search engine crawlers actually requested, when, how often, and what status code they got. Unlike crawl tools or Search Console, logs are the unsampled, ground-truth record of what really happened. it identifies itself with a user-agentA user agent is the HTTP request header a client (browser, crawler, or bot) sends to identify itself. For crawlers, a short user-agent token — a substring of that string — is what robots.txt rules actually target. containing YandexBot — the full string Yandex documents is Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.268.
“YandexBot” is really the main indexingStoring a crawled page in the search index so it can appear in results. Crawled is not the same as indexed — Google selects what to keep, and indexing isn't guaranteed. member of a larger family of Yandex robots (YandexImages, YandexMetrika, YandexDirect, YandexMobileBot, YandexCalendar, and others), each separately controllable in robots.txt. Yandex draws a specific line: User-agent: YandexBot targets only the main indexing bot, while User-agent: Yandex targets its bots more broadly.
Two things make YandexBot worth treating separately from GooglebotGooglebot is Google's web crawler — the software that fetches pages so Google can index and rank them. It comes in two variants, Googlebot Smartphone (primary, under mobile-first indexing) and Googlebot Desktop, and runs an evergreen Chromium renderer.: it honors a Yandex-only directive called Clean-param (which tells the crawlerA crawler — also called a spider or bot — is an automated program that fetches web pages, extracts their links, and queues new URLs to visit. Search engines use crawlers to discover and download content for their index. to ignore certain URL parametersThe `?key=value` data tacked onto the end of a URL after a question mark — used for tracking, sessions, filtering, sorting, and search — and one of the biggest sources of duplicate URLs and wasted crawling in SEO. that don’t change page content, with no Google or Bing equivalent), and it stopped honoring Crawl-delay on February 22, 2018. Like Google and Bing, Yandex says to verify a claimed YandexBot with a reverse-then-forward DNS check (hostname must end in yandex.ru, yandex.net, or yandex.com) rather than trusting the user-agent string.
Related: Crawling, Crawler, User Agent
Build-time retrieval analysis plus live signals for this exact article. The automatic chunk report includes a deterministic readiness score and is ready without a model download.
Search Console
sampleGA4 traffic (28d)
sampleCloudflare traffic (7d)
sampledCrUX field data (28d, phone)
sampleGoogle NLP entities
localChangelog
Updated Jul 18, 2026.
Editorial summary and recorded change details.Summary
Corrected a stale claim about YandexAdditionalBot (now officially documented), made DNS verification the answer-first identity check, and added a testable checklist for JavaScript rendering plus a fetchability nuance for Disallow vs. noindex.
Change details
-
Removed the outdated 'I couldn't confirm YandexAdditionalBot' caveat — Yandex's server-logs table now documents it (and YandexAdditional) as an AI-response opt-out bot that ignores the general User-agent: * rules, sourced directly from Yandex's current docs.
-
Reordered the 'How to spot it' section so reverse-then-forward DNS is stated as the identity answer up front, with the user-agent string framed only as a log filter.
-
Added Yandex's own fetchability condition to the Disallow vs. noindex explanation: a noindex tag only works if Yandex is allowed to crawl the page and see it.
-
Replaced the 'architecturally simpler than Google' certainty claim in the JavaScript section with a testable rendered-output, resource-access, and delayed-content checklist grounded in Yandex's own docs.
-
Added a cooperative-vs-enforced blocking caveat to the beginner block/allow guidance, noting some Yandex robots may ignore robots.txt entirely.
Full comparison unavailable — no prior snapshot was archived for this revision.