1 · What this audit measures
For each of the Top-30 most-visited websites worldwide (Similarweb, April 2026), we send
the same plain GET / request from ten different User-Agent headers and
compare the HTML each one receives back. Two humans (Chrome desktop & mobile),
two traditional search bots (Googlebot, Bingbot), and six AI/LLM crawlers (GPTBot,
OAI-SearchBot, ChatGPT-User, ClaudeBot, PerplexityBot, Applebot).
The Chrome desktop response is the baseline. For every other UA we record:
HTTP status, byte size, the <title>, <h1>, JSON-LD blocks,
visible-text length, and a SHA-256 of the normalized visible text. "100% same" means the
visible-text hash is byte-identical to Chrome; lower ratios indicate either an empty SPA shell,
a login wall, or a divergent variant.
A 403 / 429 / Cloudflare challenge is recorded as a finding, not retried via a residential proxy — because the question is precisely "what does this UA see today?". All requests are HTTP-level only (no JS execution), which mirrors what GPTBot / ClaudeBot / PerplexityBot actually do today (Vercel, 2025: none of the major AI crawlers execute JavaScript).
2 · Why dynamic rendering is back on the table in 2026
Google formally deprecated dynamic rendering (serving a pre-rendered HTML to bots and a JS app to humans) in 2024 and continues to recommend SSR / SSG / hydration instead. But the 2025–2026 reality has shifted the debate:
- AI crawlers don't render JavaScript. A Vercel analysis of 500M+ bot fetches showed GPTBot, ClaudeBot, and PerplexityBot all skip JS execution — they read whatever HTML the server first returns, then move on.
- CSR-only SPAs are invisible to LLMs. A site that ships an empty
<div id="root">shell and hydrates client-side will show ~0 chars of visible text to those crawlers, even if Googlebot can still render it. - So the "two-HTML" pattern returns under a new name. Edge pre-rendering (Cloudflare/Fastly), Next.js SSR, Nuxt SSR, Angular Universal, and dedicated services like PrerenderProxy all produce the same outcome: crawlers see fully-formed HTML. Whether you call it dynamic rendering, prerendering, or SSR-for-bots, the architectural goal is identical — give every crawler the static, indexable version of the page.
- Cloaking only triggers if the bot-version differs from the user-version in content, not in form. Search engines explicitly carve out an exception for pre-rendering as long as the same content is shown.
The audit below is therefore a sanity check on the world's biggest sites: do they actually achieve content parity across human + search + AI user-agents? Or are some bots already getting a thinner, blocked, or divergent view of the web?
3 · Headline numbers
| User-Agent | 200 OK | Blocked | Byte-identical to Chrome | ≥90% text parity | <20% text (thin) |
|---|---|---|---|---|---|
| Chrome Desktop Human | 25/30 | 5/30 (17%) | 0/30 (0%) | 22/30 (73%) | 0/30 |
| Chrome Mobile Human | 26/30 | 4/30 (13%) | 10/30 (33%) | 14/30 (47%) | 4/30 |
| Googlebot Search | 23/30 | 7/30 (23%) | 6/30 (20%) | 12/30 (40%) | 4/30 |
| Bingbot Search | 22/30 | 8/30 (27%) | 8/30 (27%) | 16/30 (53%) | 3/30 |
| GPTBot AI training | 22/30 | 8/30 (27%) | 13/30 (43%) | 15/30 (50%) | 4/30 |
| OAI-SearchBot AI search | 23/30 | 7/30 (23%) | 13/30 (43%) | 16/30 (53%) | 4/30 |
| ChatGPT-User AI live-fetch | 23/30 | 7/30 (23%) | 12/30 (40%) | 16/30 (53%) | 4/30 |
| ClaudeBot AI training | 22/30 | 8/30 (27%) | 10/30 (33%) | 16/30 (53%) | 4/30 |
| PerplexityBot AI search | 23/30 | 7/30 (23%) | 12/30 (40%) | 16/30 (53%) | 4/30 |
| Applebot AI search | 23/30 | 7/30 (23%) | 10/30 (33%) | 15/30 (50%) | 3/30 |
4 · Key findings
4.1 · Hard AI-bot blocks (the gatekeeping sites)
Seven sites return HTTP 4xx to one or more declared AI crawlers from this server's IP while serving Chrome normally. This is the closest thing to a "no robots" policy actually enforced at the edge — and it splits cleanly by vendor:
- #11 wikipedia.org (claudebot, applebot)
- #13 yahoo.com (claudebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #14 yandex.ru (claudebot, perplexitybot)
- #17 linkedin.com (gptbot)
- #21 cloud.microsoft (applebot)
- #24 live.com (applebot)
- #25 ebay.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
Note yahoo.com blocks every one of the six AI bots (GPTBot, OAI-SearchBot, ChatGPT-User, ClaudeBot, PerplexityBot) while still giving Chrome a full SSR page. linkedin.com blocks only GPTBot (their well-publicized stance against AI training data scraping). ebay.com blocks every declared AI bot UA and the search bots — a near-total "humans-and-direct-traffic only" posture from the front page.
4.2 · Sites blocking declared Googlebot / Bingbot from a random IP
Five sites refuse the canonical Googlebot or Bingbot User-Agent when it comes from an IP outside the official bot ranges. The lesson: never trust the User-Agent on its own — these sites verify reverse-DNS or maintain an IP allowlist on top of UA matching.
- #7 x.com (bingbot)
- #9 tiktok.com (googlebot_smartphone, bingbot)
- #11 wikipedia.org (googlebot_smartphone, bingbot)
- #21 cloud.microsoft (googlebot_smartphone, bingbot)
- #25 ebay.com (googlebot_smartphone, bingbot)
Wikipedia is the most public-spirited example: its anti-abuse stack rejects "Googlebot" claims from non-Google IPs with the same 403 you'd give a curl script — a healthy default that more sites should copy.
4.3 · Pure SSR — the same bytes for everyone
16 of the 30 sites are fully UA-neutral: no blocks, no challenges, every user-agent gets a response. Crucially, 14 of them serve byte-identical visible text (SHA-256 matches) to at least one AI crawler and Chrome — proof that a single SSR pipeline is feeding both browsers and bots:
- #4 instagram.com (chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #5 chatgpt.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #6 reddit.com (applebot, oai_searchbot, perplexitybot)
- #9 tiktok.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #11 wikipedia.org (chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #12 yahoo.co.jp (claudebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #14 yandex.ru (chatgpt_user, oai_searchbot, gptbot)
- #15 gemini.google.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #16 amazon.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #18 baidu.com (applebot)
- #20 naver.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #22 netflix.com (claudebot, applebot, oai_searchbot, perplexitybot, gptbot)
- #24 live.com (claudebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #26 bilibili.com (applebot)
- #27 temu.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #28 twitch.tv (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #29 dzen.ru (claudebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
- #30 microsoft.com (claudebot, applebot, chatgpt_user, oai_searchbot, perplexitybot, gptbot)
This is the modern post-deprecation pattern Google asked for in 2024: one HTML response, served to everyone, no UA forking. Amazon, Naver, Netflix, Microsoft, Temu, Twitch, and Gemini all run this way.
4.4 · "Dynamic rendering by another name" — bots get MORE than humans
A handful of sites still return dramatically more content to declared bots than to a real Chrome browser. The most extreme is baidu.com: Chrome gets a 357-character shell and a script that hydrates the search UI; Googlebot, Bingbot, GPTBot, ClaudeBot and PerplexityBot all get a ~250 KB fully-rendered HTML — the classic pre-render-for-bots pattern that Google formally deprecated but the rest of the world quietly keeps using.
- #13 yahoo.com Chrome=2521 chars → applebot=436%, googlebot_smartphone=442%, bingbot=441%
- #18 baidu.com Chrome=357 chars → claudebot=69488%, chatgpt_user=69488%, oai_searchbot=69488%, perplexitybot=69488%, gptbot=69488%, bingbot=69488%
- #20 naver.com Chrome=126 chars → googlebot_smartphone=815%
- #23 pinterest.com Chrome=19 chars → claudebot=394%, applebot=394%, googlebot_smartphone=394%, perplexitybot=394%, bingbot=394%
Whether this counts as "cloaking" depends on whether the content is the same. In Baidu's case the same query box and same brand are present in both responses, just rendered server-side for crawlers — which is exactly the "edge pre-rendering" pattern that PrerenderProxy implements for client sites in Finland.
4.5 · IP-level blockades (everything blocked, not bot-specific)
Four sites returned a hard 4xx to every single UA we tried — including a real Chrome. From this server's IP (a Hetzner datacenter address) they treat all traffic as untrusted regardless of User-Agent:
- #5 chatgpt.com
- #6 reddit.com
- #19 bet.br
- #25 ebay.com
These are not informative findings about UA-specific behavior — they're informative about the broader trend of "block all datacenter IPs at the edge". From a residential IP all four would likely respond normally; they're included so the data set is honest about which results are constrained by our origin.
5 · Site × UA heatmap
Green = byte-identical to Chrome. Yellow = 50–90% text parity. Blue = 10–50% (likely a thinner variant or partial render). Red text = HTTP block (403/429/etc.). Click a domain to jump to the per-site breakdown.
| # | Site | Chrome Desktop human | Chrome Mobile human | Googlebot search | Bingbot search | GPTBot ai_train | OAI-SearchBot ai_search | ChatGPT-User ai_user | ClaudeBot ai_train | PerplexityBot ai_search | Applebot ai_search |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | google.com search · SSR (search) | 100% ≈ parity | 88% | 8% thin | 5% thin | 4% thin | 4% thin | 4% thin | 4% thin | 4% thin | 5% thin |
| 2 | youtube.com video · SPA + SSR shell | 100% ≈ parity | 3% thin | 3% thin | 120% ≈ parity | 120% ≈ parity | 120% ≈ parity | 120% ≈ parity | 120% ≈ parity | 120% ≈ parity | 120% ≈ parity |
| 3 | facebook.com social · SPA, login wall | 100% ≈ parity | 400 | 93% ≈ parity | 129% ≈ parity | 129% ≈ parity | 129% ≈ parity | 129% ≈ parity | 129% ≈ parity | 129% ≈ parity | 129% ≈ parity |
| 4 | instagram.com social · SPA, login wall | 100% ≈ parity | 1% thin | 1% thin | 1% thin | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 1% thin | 100% same byte-identical | 1% thin |
| 5 | chatgpt.com ai_chat · Next.js | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 |
| 6 | reddit.com social · Next.js SSR | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK rate_limited | BLOCK http_403 | BLOCK http_403 |
| 7 | x.com social · SPA, login wall | 100% ≈ parity | 100% same byte-identical | 404 | BLOCK http_403 | 402 | 402 | 402 | 100% ≈ parity | 402 | 404 |
| 8 | whatsapp.com messaging · Marketing site, SSR | 100% ≈ parity | 400 | 96% ≈ parity | 96% ≈ parity | 96% ≈ parity | 96% ≈ parity | 96% ≈ parity | 96% ≈ parity | 96% ≈ parity | 100% ≈ parity |
| 9 | tiktok.com video · SPA | 100% ≈ parity | 100% same byte-identical | BLOCK http_403 | BLOCK http_403 | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 10 | bing.com search · SSR | 100% ≈ parity | 9% thin | 8% thin | 15% | 15% | 15% | 15% | 15% | 15% | 15% |
| 11 | wikipedia.org reference · MediaWiki SSR | 100% ≈ parity | 100% ≈ parity | BLOCK http_403 | BLOCK http_403 | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | BLOCK http_403 | 100% same byte-identical | BLOCK http_403 |
| 12 | yahoo.co.jp portal · SSR | BLOCK http_403 | BLOCK http_403 | 34% | 98% ≈ parity | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | 46% |
| 13 | yahoo.com portal · SSR | 100% ≈ parity | 100% same byte-identical | 442% ≈ parity | 441% ≈ parity | BLOCK rate_limited | BLOCK rate_limited | BLOCK rate_limited | BLOCK rate_limited | BLOCK rate_limited | 436% ≈ parity |
| 14 | yandex.ru search · SSR | — | — | — | — | — | — | — | ERR captcha_page | ERR captcha_page | — |
| 15 | gemini.google.com ai_chat · SPA, auth | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 16 | amazon.com ecommerce · SSR | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 17 | linkedin.com social · SSR + SPA | 100% ≈ parity | 97% ≈ parity | 97% ≈ parity | 98% ≈ parity | ERR http_999 | 98% ≈ parity | 98% ≈ parity | 98% ≈ parity | 98% ≈ parity | 98% ≈ parity |
| 18 | baidu.com search · SSR | 100% ≈ parity | 42% | 42% | 69488% ≈ parity | 69488% ≈ parity | 69488% ≈ parity | 69488% ≈ parity | 69488% ≈ parity | 69488% ≈ parity | 100% same byte-identical |
| 19 | bet.br betting · SPA | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body |
| 20 | naver.com portal · SSR | 100% ≈ parity | 815% ≈ parity | 815% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 21 | cloud.microsoft saas · SSR | 100% ≈ parity | 86% | BLOCK http_403 | BLOCK http_403 | 95% ≈ parity | 95% ≈ parity | 95% ≈ parity | 95% ≈ parity | 87% | BLOCK http_403 |
| 22 | netflix.com video · SSR + SPA | 100% ≈ parity | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 23 | pinterest.com social · Next.js SSR | BLOCK http_403 | 394% ≈ parity | 394% ≈ parity | 394% ≈ parity | BLOCK http_403 | BLOCK http_403 | BLOCK http_403 | 394% ≈ parity | 394% ≈ parity | 394% ≈ parity |
| 24 | live.com saas · Redirect to login | 100% ≈ parity | 117% ≈ parity | 117% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | BLOCK http_403 |
| 25 | ebay.com ecommerce · SSR (substituted at rank 25) | 100% ≈ parity | 47% | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body | ERR empty_body |
| 26 | bilibili.com video · SSR + SPA | 100% ≈ parity | 90% ≈ parity | 86% | 100% ≈ parity | 4% thin | 4% thin | 4% thin | 4% thin | 4% thin | 100% same byte-identical |
| 27 | temu.com ecommerce · SSR | — | — | — | — | — | — | — | — | — | — |
| 28 | twitch.tv video · SPA (substituted at rank 28) | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
| 29 | dzen.ru portal · SSR | — | — | — | — | — | — | — | — | — | — |
| 30 | microsoft.com saas · SSR | 100% ≈ parity | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical | 100% same byte-identical |
6 · Per-site detail
#1 · google.com
Google ·
text=3479 chars ·
bytes=84306 ·
jsonld=0 ·
sha=ecee3cf423a093
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 84306 | 3479 | 100% | ecee3cf423 | 0 | Bevor Sie zu Google weitergehen | — | |
| Chrome Mobile Human | 200 | 78493 | 3082 | 88% | 911ca0c241 | 0 | Bevor Sie zu Google weitergehen | — | |
| Googlebot Search | 200 | 58781 | 308 | 8% | e407c0b240 | 0 | — | — | |
| Bingbot Search | 200 | 21533 | 179 | 5% | 220c89f268 | 0 | — | — | |
| GPTBot AI training | 200 | 10272 | 154 | 4% | 22f61e1298 | 0 | — | — | |
| OAI-SearchBot AI search | 200 | 10287 | 154 | 4% | 22f61e1298 | 0 | — | — | |
| ChatGPT-User AI live-fetch | 200 | 10289 | 154 | 4% | 22f61e1298 | 0 | — | — | |
| ClaudeBot AI training | 200 | 10293 | 154 | 4% | 22f61e1298 | 0 | — | — | |
| PerplexityBot AI search | 200 | 10291 | 154 | 4% | 22f61e1298 | 0 | — | — | |
| Applebot AI search | 200 | 20542 | 179 | 5% | 220c89f268 | 0 | — | — |
#2 · youtube.com
YouTube ·
text=192 chars ·
bytes=77828 ·
jsonld=0 ·
sha=e116b81604f5a5
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 77828 | 192 | 100% | e116b81604 | 0 | YouTube | — | — |
| Chrome Mobile Human | 200 | 65063 | 7 | 3% | fb7accfff8 | 0 | YouTube | — | — |
| Googlebot Search | 200 | 61210 | 7 | 3% | fb7accfff8 | 0 | YouTube | — | — |
| Bingbot Search | 200 | 73918 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| GPTBot AI training | 200 | 76880 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| OAI-SearchBot AI search | 200 | 77135 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| ChatGPT-User AI live-fetch | 200 | 77047 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| ClaudeBot AI training | 200 | 77199 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| PerplexityBot AI search | 200 | 76949 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
| Applebot AI search | 200 | 74457 | 232 | 120% | 0b0fb8ded2 | 0 | YouTube | — | — |
#3 · facebook.com
Facebook ·
text=485 chars ·
bytes=75981 ·
jsonld=0 ·
sha=6f0cd26ae2a2dd
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 75981 | 485 | 100% | 6f0cd26ae2 | 0 | — | — | |
| Chrome Mobile Human | 400 | 1381 | 156 | 32% | 6fab2b75c6 | 0 | Error Facebook | — | — |
| Googlebot Search | 200 | 12030 | 454 | 93% | f50a1f424c | 0 | Facebook — Выполните вход или зарегистрируйтесь | — | |
| Bingbot Search | 200 | 78145 | 627 | 129% | 280e920a57 | 0 | — | — | |
| GPTBot AI training | 200 | 85004 | 627 | 129% | 280e920a57 | 0 | — | — | |
| OAI-SearchBot AI search | 200 | 85072 | 627 | 129% | 280e920a57 | 0 | — | — | |
| ChatGPT-User AI live-fetch | 200 | 84979 | 627 | 129% | 280e920a57 | 0 | — | — | |
| ClaudeBot AI training | 200 | 85196 | 627 | 129% | 280e920a57 | 0 | — | — | |
| PerplexityBot AI search | 200 | 85080 | 627 | 129% | 280e920a57 | 0 | — | — | |
| Applebot AI search | 200 | 74146 | 627 | 129% | 280e920a57 | 0 | — | — |
#4 · instagram.com
Instagram ·
text=839 chars ·
bytes=118606 ·
jsonld=0 ·
sha=26085a6f2b8aa4
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 118606 | 839 | 100% | 26085a6f2b | 0 | — | — | |
| Chrome Mobile Human | 200 | 113553 | 9 | 1% | bad57ef783 | 0 | — | — | |
| Googlebot Search | 200 | 114433 | 9 | 1% | bad57ef783 | 0 | — | — | |
| Bingbot Search | 200 | 132837 | 9 | 1% | bad57ef783 | 0 | — | — | |
| GPTBot AI training | 200 | 118595 | 839 | 100% | byte-identical | 0 | — | — | |
| OAI-SearchBot AI search | 200 | 118864 | 839 | 100% | byte-identical | 0 | — | — | |
| ChatGPT-User AI live-fetch | 200 | 119113 | 839 | 100% | byte-identical | 0 | — | — | |
| ClaudeBot AI training | 200 | 132863 | 9 | 1% | bad57ef783 | 0 | — | — | |
| PerplexityBot AI search | 200 | 118839 | 839 | 100% | byte-identical | 0 | — | — | |
| Applebot AI search | 200 | 132932 | 9 | 1% | bad57ef783 | 0 | — | — |
#5 · chatgpt.com
·
text=41 chars ·
bytes=4723 ·
jsonld=0 ·
sha=9fea79acb501af
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 403 | 4723 | 41 | 100% | 9fea79acb5 | 0 | — | — | http_403 |
| Chrome Mobile Human | 403 | 4673 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| Googlebot Search | 403 | 4663 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| Bingbot Search | 403 | 4583 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| GPTBot AI training | 403 | 4502 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| OAI-SearchBot AI search | 403 | 4473 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| ChatGPT-User AI live-fetch | 403 | 4482 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| ClaudeBot AI training | 403 | 4445 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| PerplexityBot AI search | 403 | 4487 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
| Applebot AI search | 403 | 4567 | 41 | 100% | byte-identical | 0 | — | — | http_403 |
#6 · reddit.com
·
text=221 chars ·
bytes=190240 ·
jsonld=0 ·
sha=199c03b0e41f0f
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 403 | 190240 | 221 | 100% | 199c03b0e4 | 0 | — | — | http_403 |
| Chrome Mobile Human | 403 | 190240 | 221 | 100% | byte-identical | 0 | — | — | http_403 |
| Googlebot Search | 403 | 1486 | 764 | 345% | 711843b213 | 0 | Blocked | whoa there, pardner! | http_403 |
| Bingbot Search | 403 | 1522 | 801 | 362% | 2b65e06aba | 0 | Blocked | whoa there, pardner! | http_403 |
| GPTBot AI training | 403 | 1522 | 801 | 362% | 06b0ae3b7d | 0 | Blocked | whoa there, pardner! | http_403 |
| OAI-SearchBot AI search | 403 | 190240 | 221 | 100% | byte-identical | 0 | — | — | http_403 |
| ChatGPT-User AI live-fetch | 403 | 1522 | 801 | 362% | 3fe1ed4de2 | 0 | Blocked | whoa there, pardner! | http_403 |
| ClaudeBot AI training | 429 | 0 | — | 0% | — | — | — | — | rate_limited |
| PerplexityBot AI search | 403 | 190240 | 221 | 100% | byte-identical | 0 | — | — | http_403 |
| Applebot AI search | 403 | 190240 | 221 | 100% | byte-identical | 0 | — | — | http_403 |
#7 · x.com
·
text=493 chars ·
bytes=61699 ·
jsonld=0 ·
sha=a9213f547242ae
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 61699 | 493 | 100% | a9213f5472 | 0 | — | JavaScript is not available. | — |
| Chrome Mobile Human | 200 | 62601 | 493 | 100% | byte-identical | 0 | — | JavaScript is not available. | — |
| Googlebot Search | 404 | 1498 | 260 | 52% | 452e9cf02b | 0 | X / ? | Nothing to see here | — |
| Bingbot Search | 403 | 1740 | 763 | 154% | 820df8795d | 0 | Attention Required! | Cloudflare | Sorry, you have been blocked | http_403 |
| GPTBot AI training | 402 | 55 | 55 | 11% | 35e642f0e1 | 0 | — | — | — |
| OAI-SearchBot AI search | 402 | 55 | 55 | 11% | 35e642f0e1 | 0 | — | — | — |
| ChatGPT-User AI live-fetch | 402 | 55 | 55 | 11% | 35e642f0e1 | 0 | — | — | — |
| ClaudeBot AI training | 200 | 27979 | 496 | 100% | 742d653d2a | 1 | X. It’s what’s happening / X | <div dir="ltr" class="css-146c3p1 r-qvutc0 r-37j5jr r-q4m81j r-a023e6 r-rjixqe r-b88u0q r-1awozwy | — |
| PerplexityBot AI search | 402 | 55 | 55 | 11% | 35e642f0e1 | 0 | — | — | — |
| Applebot AI search | 404 | 1498 | 260 | 52% | 452e9cf02b | 0 | X / ? | Nothing to see here | — |
#8 · whatsapp.com
WhatsApp | Secure and Reliable Free Private Messaging and Calling ·
text=4515 chars ·
bytes=46518 ·
jsonld=0 ·
sha=5bedce08758c03
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 46518 | 4515 | 100% | 5bedce0875 | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| Chrome Mobile Human | 400 | 2608 | 130 | 2% | b50eff329b | 0 | Error | Sorry, something went wrong. | — |
| Googlebot Search | 200 | 44789 | 4355 | 96% | a68c190d5c | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| Bingbot Search | 200 | 44723 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| GPTBot AI training | 200 | 45805 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| OAI-SearchBot AI search | 200 | 45828 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| ChatGPT-User AI live-fetch | 200 | 45854 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| ClaudeBot AI training | 200 | 44716 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| PerplexityBot AI search | 200 | 45818 | 4371 | 96% | bdd3d90dbb | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
| Applebot AI search | 200 | 46049 | 4543 | 100% | a2af04161b | 0 | WhatsApp | Secure and Reliable Free Private Messaging and Calling | Message privately | — |
#9 · tiktok.com
TikTok - Make Your Day ·
text=22 chars ·
bytes=76535 ·
jsonld=0 ·
sha=9a1dadd3120566
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 76535 | 22 | 100% | 9a1dadd312 | 0 | TikTok - Make Your Day | — | — |
| Chrome Mobile Human | 200 | 40975 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| Googlebot Search | 403 | 9 | 9 | 40% | 78342a0905 | 0 | — | — | http_403 |
| Bingbot Search | 403 | 9 | 9 | 40% | 78342a0905 | 0 | — | — | http_403 |
| GPTBot AI training | 200 | 76037 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| OAI-SearchBot AI search | 200 | 76220 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| ChatGPT-User AI live-fetch | 200 | 75959 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| ClaudeBot AI training | 200 | 76228 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| PerplexityBot AI search | 200 | 69005 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
| Applebot AI search | 200 | 69050 | 22 | 100% | byte-identical | 0 | TikTok - Make Your Day | — | — |
#10 · bing.com
Search - Microsoft Bing ·
text=307 chars ·
bytes=49536 ·
jsonld=0 ·
sha=7826d291ca4a2c
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 49536 | 307 | 100% | 7826d291ca | 0 | Search - Microsoft Bing | — | — |
| Chrome Mobile Human | 200 | 53963 | 28 | 9% | e63e22fb59 | 0 | Search - Microsoft Bing | — | — |
| Googlebot Search | 200 | 54487 | 26 | 8% | 5345384135 | 0 | Haku – Microsoft Bing | — | — |
| Bingbot Search | 200 | 23790 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| GPTBot AI training | 200 | 23531 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| OAI-SearchBot AI search | 200 | 23581 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| ChatGPT-User AI live-fetch | 200 | 23646 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| ClaudeBot AI training | 200 | 23493 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| PerplexityBot AI search | 200 | 23595 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
| Applebot AI search | 200 | 26687 | 47 | 15% | e154afbd8b | 0 | Haku – Microsoft Bing | — | — |
#11 · wikipedia.org
Wikipedia, the free encyclopedia ·
text=13309 chars ·
bytes=49223 ·
jsonld=1 ·
sha=afe74582bd4a6e
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 49223 | 13309 | 100% | afe74582bd | 1 | Wikipedia, the free encyclopedia | Main Page | — |
| Chrome Mobile Human | 200 | 49332 | 13411 | 100% | 40e7e11693 | 1 | Wikipedia, the free encyclopedia | Welcome to Wikipedia | — |
| Googlebot Search | 403 | 105 | 105 | 0% | 4ccd03b5e7 | 0 | — | — | http_403 |
| Bingbot Search | 403 | 105 | 105 | 0% | 99856652f5 | 0 | — | — | http_403 |
| GPTBot AI training | 200 | 49223 | 13309 | 100% | byte-identical | 1 | Wikipedia, the free encyclopedia | Main Page | — |
| OAI-SearchBot AI search | 200 | 49223 | 13309 | 100% | byte-identical | 1 | Wikipedia, the free encyclopedia | Main Page | — |
| ChatGPT-User AI live-fetch | 200 | 49223 | 13309 | 100% | byte-identical | 1 | Wikipedia, the free encyclopedia | Main Page | — |
| ClaudeBot AI training | 403 | 82 | 82 | 0% | 41609a6ede | 0 | — | — | http_403 |
| PerplexityBot AI search | 200 | 49223 | 13309 | 100% | byte-identical | 1 | Wikipedia, the free encyclopedia | Main Page | — |
| Applebot AI search | 403 | 105 | 105 | 0% | a3984fbc9a | 0 | — | — | http_403 |
#12 · yahoo.co.jp
【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN ·
text=1876 chars ·
bytes=10051 ·
jsonld=0 ·
sha=893c480de5c714
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 403 | 10051 | 1876 | 100% | 893c480de5 | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| Chrome Mobile Human | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| Googlebot Search | 200 | 23147 | 644 | 34% | 3eae0b8bec | 0 | Yahoo! JAPAN | Yahoo! JAPAN | — |
| Bingbot Search | 200 | 33152 | 1846 | 98% | 12cbceb645 | 0 | Yahoo! JAPAN | Yahoo! JAPAN | — |
| GPTBot AI training | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| OAI-SearchBot AI search | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| ChatGPT-User AI live-fetch | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| ClaudeBot AI training | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| PerplexityBot AI search | 403 | 10051 | 1876 | 100% | byte-identical | 0 | 【お知らせ】欧州経済領域(EEA)およびイギリスからご利用のお客様へ - Yahoo! JAPAN | — | http_403 |
| Applebot AI search | 200 | 8572 | 879 | 46% | c793ac23de | 0 | Yahoo! JAPAN | Yahoo! JAPAN | — |
#13 · yahoo.com
Tietosuojavalintasi ·
text=2521 chars ·
bytes=14916 ·
jsonld=0 ·
sha=9dac5ffe5a2254
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 14916 | 2521 | 100% | 9dac5ffe5a | 0 | Tietosuojavalintasi | guce | — |
| Chrome Mobile Human | 200 | 14918 | 2521 | 100% | byte-identical | 0 | Tietosuojavalintasi | guce | — |
| Googlebot Search | 200 | 289835 | 11163 | 442% | 40f5a850ca | 0 | Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos | — | — |
| Bingbot Search | 200 | 324032 | 11133 | 441% | 0a1f074983 | 1 | Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos | — | — |
| GPTBot AI training | 429 | 23 | 23 | 0% | 0d24c98db9 | 0 | — | — | rate_limited |
| OAI-SearchBot AI search | 429 | 23 | 23 | 0% | 0d24c98db9 | 0 | — | — | rate_limited |
| ChatGPT-User AI live-fetch | 429 | 23 | 23 | 0% | 0d24c98db9 | 0 | — | — | rate_limited |
| ClaudeBot AI training | 429 | 23 | 23 | 0% | 0d24c98db9 | 0 | — | — | rate_limited |
| PerplexityBot AI search | 429 | 23 | 23 | 0% | 0d24c98db9 | 0 | — | — | rate_limited |
| Applebot AI search | 200 | 321154 | 10996 | 436% | ed701d4d1b | 1 | Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos | — | — |
#14 · yandex.ru
·
text=0 chars ·
bytes=2002 ·
jsonld=0 ·
sha=e3b0c44298fc1c
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 2002 | 0 | — | e3b0c44298 | 0 | — | — | — |
| Chrome Mobile Human | 200 | 2008 | 0 | — | byte-identical | 0 | — | — | — |
| Googlebot Search | 200 | 269489 | 14056 | — | 1bd46b1e75 | 0 | Дзен — главная новостная информационная платформа, которая помогает миллионам людей узнавать, что происходит в мире. | — | — |
| Bingbot Search | 200 | 368510 | 15257 | — | e67a3a9e03 | 0 | Дзен — главная новостная информационная платформа, которая помогает миллионам людей узнавать, что происходит в мире. | — | — |
| GPTBot AI training | 200 | 1864 | 0 | — | byte-identical | 0 | — | — | — |
| OAI-SearchBot AI search | 200 | 1853 | 0 | — | byte-identical | 0 | — | — | — |
| ChatGPT-User AI live-fetch | 200 | 1857 | 0 | — | byte-identical | 0 | — | — | — |
| ClaudeBot AI training | 200 | 13998 | 466 | — | 8cac1ecdd4 | 0 | Вы не робот? | Подтвердите, что запросы отправляли вы, а не робот | captcha_page |
| PerplexityBot AI search | 200 | 14002 | 466 | — | 7dfbcf0f55 | 0 | Вы не робот? | Подтвердите, что запросы отправляли вы, а не робот | captcha_page |
| Applebot AI search | 200 | 34137 | 310 | — | fb679f7fd5 | 0 | Яндекс — быстрый поиск в интернете | — | — |
#15 · gemini.google.com
Google Gemini ·
text=22 chars ·
bytes=113291 ·
jsonld=1 ·
sha=8f3a3901758f9e
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 113291 | 22 | 100% | 8f3a390175 | 1 | Google Gemini | — | — |
| Chrome Mobile Human | 200 | 113052 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| Googlebot Search | 200 | 112979 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| Bingbot Search | 200 | 110606 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| GPTBot AI training | 200 | 116752 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| OAI-SearchBot AI search | 200 | 116727 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| ChatGPT-User AI live-fetch | 200 | 116797 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| ClaudeBot AI training | 200 | 116845 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| PerplexityBot AI search | 200 | 116823 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
| Applebot AI search | 200 | 113304 | 22 | 100% | byte-identical | 1 | Google Gemini | — | — |
#16 · amazon.com
·
text=157 chars ·
bytes=2007 ·
jsonld=0 ·
sha=9711627e613137
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 202 | 2007 | 157 | 100% | 9711627e61 | 0 | — | JavaScript is disabled | — |
| Chrome Mobile Human | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| Googlebot Search | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| Bingbot Search | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| GPTBot AI training | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| OAI-SearchBot AI search | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| ChatGPT-User AI live-fetch | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| ClaudeBot AI training | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| PerplexityBot AI search | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
| Applebot AI search | 202 | 2007 | 157 | 100% | byte-identical | 0 | — | JavaScript is disabled | — |
#17 · linkedin.com
LinkedIn: Log In or Sign Up ·
text=5720 chars ·
bytes=17260 ·
jsonld=0 ·
sha=0a760b42bd52c7
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 17260 | 5720 | 100% | 0a760b42bd | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| Chrome Mobile Human | 200 | 16450 | 5552 | 97% | e06c0b90cf | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| Googlebot Search | 200 | 15952 | 5552 | 97% | c2b4f6d2a0 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| Bingbot Search | 200 | 16070 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| GPTBot AI training | 999 | 2109 | 257 | 4% | d8667fb246 | 0 | 999: request failed | Request denied | http_999 |
| OAI-SearchBot AI search | 200 | 16406 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| ChatGPT-User AI live-fetch | 200 | 16405 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| ClaudeBot AI training | 200 | 16405 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| PerplexityBot AI search | 200 | 16407 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
| Applebot AI search | 200 | 16404 | 5605 | 98% | 4007e2c386 | 0 | LinkedIn: Log In or Sign Up | Welcome to your professional community | — |
#18 · baidu.com
百度一下,你就知道 ·
text=357 chars ·
bytes=6456 ·
jsonld=0 ·
sha=1f9c648d351c0d
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 6456 | 357 | 100% | 1f9c648d35 | 0 | 百度一下,你就知道 | — | — |
| Chrome Mobile Human | 200 | 28260 | 151 | 42% | 3d50f3e2e4 | 0 | 百度一下 | — | — |
| Googlebot Search | 200 | 28206 | 151 | 42% | 3d50f3e2e4 | 0 | 百度一下 | — | — |
| Bingbot Search | 200 | 153079 | 248072 | 69488% | ce715bdf0f | 0 | 百度一下,你就知道 | — | — |
| GPTBot AI training | 200 | 153223 | 248072 | 69488% | ce715bdf0f | 0 | 百度一下,你就知道 | — | — |
| OAI-SearchBot AI search | 200 | 153186 | 248072 | 69488% | ce715bdf0f | 0 | 百度一下,你就知道 | — | — |
| ChatGPT-User AI live-fetch | 200 | 153039 | 248072 | 69488% | ce715bdf0f | 0 | 百度一下,你就知道 | — | — |
| ClaudeBot AI training | 200 | 153211 | 248072 | 69488% | ce715bdf0f | 0 | 百度一下,你就知道 | — | — |
| PerplexityBot AI search | 200 | 152932 | 248072 | 69488% | 1bde2e291f | 0 | 百度一下,你就知道 | — | — |
| Applebot AI search | 200 | 6456 | 357 | 100% | byte-identical | 0 | 百度一下,你就知道 | — | — |
#19 · bet.br
·
text=0 chars ·
bytes=0 ·
jsonld= ·
sha=
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 0 | 0 | — | — | — | — | — | — | empty_body |
| Chrome Mobile Human | 0 | 0 | — | — | — | — | — | — | empty_body |
| Googlebot Search | 0 | 0 | — | — | — | — | — | — | empty_body |
| Bingbot Search | 0 | 0 | — | — | — | — | — | — | empty_body |
| GPTBot AI training | 0 | 0 | — | — | — | — | — | — | empty_body |
| OAI-SearchBot AI search | 0 | 0 | — | — | — | — | — | — | empty_body |
| ChatGPT-User AI live-fetch | 0 | 0 | — | — | — | — | — | — | empty_body |
| ClaudeBot AI training | 0 | 0 | — | — | — | — | — | — | empty_body |
| PerplexityBot AI search | 0 | 0 | — | — | — | — | — | — | empty_body |
| Applebot AI search | 0 | 0 | — | — | — | — | — | — | empty_body |
#21 · cloud.microsoft
Microsoft 365 Copilot - Sign in ·
text=18312 chars ·
bytes=47295 ·
jsonld=1 ·
sha=2d99e9a72e62e5
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 47295 | 18312 | 100% | 2d99e9a72e | 1 | Microsoft 365 Copilot - Sign in | Microsoft 365 Copilot | — |
| Chrome Mobile Human | 200 | 29629 | 15795 | 86% | e7b7ffa325 | 1 | Microsoft 365 Copilot - Sign in | Microsoft 365 Copilot | — |
| Googlebot Search | 403 | 693 | 240 | 1% | 32de7abf78 | 0 | Error 403 | Error 403 | http_403 |
| Bingbot Search | 403 | 693 | 240 | 1% | d62b1153b0 | 0 | Error 403 | Error 403 | http_403 |
| GPTBot AI training | 200 | 38441 | 17426 | 95% | d21a888ff8 | 1 | Microsoft 365 Copilot - Sign in | Meet the Microsoft 365 Copilot app | — |
| OAI-SearchBot AI search | 200 | 38432 | 17409 | 95% | a3a7929d9b | 1 | Microsoft 365 Copilot - Sign in | Meet the Microsoft 365 Copilot app | — |
| ChatGPT-User AI live-fetch | 200 | 38486 | 17417 | 95% | 642eb9fd2a | 1 | Microsoft 365 Copilot - Sign in | Meet the Microsoft 365 Copilot app | — |
| ClaudeBot AI training | 200 | 38481 | 17486 | 95% | 138def6b2d | 1 | Microsoft 365 Copilot - Sign in | Meet the Microsoft 365 Copilot app | — |
| PerplexityBot AI search | 200 | 38126 | 15974 | 87% | 9aff26b5f1 | 1 | Microsoft 365 Copilot - Sign in | Meet the Microsoft 365 Copilot app | — |
| Applebot AI search | 403 | 693 | 240 | 1% | 3188a68ddd | 0 | Error 403 | Error 403 | http_403 |
#22 · netflix.com
Netflix Finland – Watch series online, watch films online ·
text=3315 chars ·
bytes=79796 ·
jsonld=0 ·
sha=deaacab196d926
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 79796 | 3315 | 100% | deaacab196 | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| Chrome Mobile Human | 200 | 80392 | 3321 | 100% | 1c6b952584 | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| Googlebot Search | 200 | 80334 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| Bingbot Search | 200 | 559580 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| GPTBot AI training | 200 | 559558 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| OAI-SearchBot AI search | 200 | 559580 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| ChatGPT-User AI live-fetch | 200 | 559560 | 3321 | 100% | 1c6b952584 | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| ClaudeBot AI training | 200 | 559621 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| PerplexityBot AI search | 200 | 559556 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
| Applebot AI search | 200 | 559621 | 3315 | 100% | byte-identical | 0 | Netflix Finland – Watch series online, watch films online | Unlimited films, series and more | — |
#23 · pinterest.com
Forbidden ·
text=19 chars ·
bytes=81 ·
jsonld=0 ·
sha=10703995ab9c4a
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 403 | 81 | 19 | 100% | 10703995ab | 0 | Forbidden | Forbidden | http_403 |
| Chrome Mobile Human | 200 | 98078 | 75 | 394% | c8d2bd0b93 | 1 | — | — | |
| Googlebot Search | 200 | 98762 | 75 | 394% | c8d2bd0b93 | 1 | — | — | |
| Bingbot Search | 200 | 98130 | 75 | 394% | c8d2bd0b93 | 1 | — | — | |
| GPTBot AI training | 403 | 2987 | 21 | 110% | e8f5d85dae | 0 | Pinterest - Forbidden | — | http_403 |
| OAI-SearchBot AI search | 403 | 2987 | 21 | 110% | e8f5d85dae | 0 | Pinterest - Forbidden | — | http_403 |
| ChatGPT-User AI live-fetch | 403 | 2987 | 21 | 110% | e8f5d85dae | 0 | Pinterest - Forbidden | — | http_403 |
| ClaudeBot AI training | 200 | 100272 | 75 | 394% | c8d2bd0b93 | 1 | — | — | |
| PerplexityBot AI search | 200 | 100358 | 75 | 394% | c8d2bd0b93 | 1 | — | — | |
| Applebot AI search | 200 | 100916 | 75 | 394% | c8d2bd0b93 | 1 | — | — |
#24 · live.com
Outlook ·
text=35 chars ·
bytes=4811 ·
jsonld=0 ·
sha=5d13b33f004e6b
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 4811 | 35 | 100% | 5d13b33f00 | 0 | Outlook | — | — |
| Chrome Mobile Human | 200 | 4294 | 41 | 117% | 9c7b088f1a | 0 | Outlook | — | — |
| Googlebot Search | 200 | 4292 | 41 | 117% | 9c7b088f1a | 0 | Outlook | — | — |
| Bingbot Search | 200 | 4812 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| GPTBot AI training | 200 | 4811 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| OAI-SearchBot AI search | 200 | 4813 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| ChatGPT-User AI live-fetch | 200 | 4814 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| ClaudeBot AI training | 200 | 4810 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| PerplexityBot AI search | 200 | 4812 | 35 | 100% | byte-identical | 0 | Outlook | — | — |
| Applebot AI search | 403 | 0 | — | 0% | — | — | — | — | http_403 |
#25 · ebay.com
Electronics, Cars, Fashion, Collectibles & More | eBay ·
text=7166 chars ·
bytes=67058 ·
jsonld=0 ·
sha=3f4c2770bd4d39
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 67058 | 7166 | 100% | 3f4c2770bd | 0 | Electronics, Cars, Fashion, Collectibles & More | eBay | Electronics, Cars, Fashion, Collectibles & More | eBay | — |
| Chrome Mobile Human | 200 | 56805 | 3398 | 47% | cc608fe3d3 | 0 | Electronics, Cars, Fashion, Collectibles & More | eBay | Electronics, Cars, Fashion, Collectibles & More | eBay | — |
| Googlebot Search | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| Bingbot Search | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| GPTBot AI training | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| OAI-SearchBot AI search | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| ChatGPT-User AI live-fetch | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| ClaudeBot AI training | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| PerplexityBot AI search | 0 | 0 | — | 0% | — | — | — | — | empty_body |
| Applebot AI search | 0 | 0 | — | 0% | — | — | — | — | empty_body |
#26 · bilibili.com
哔哩哔哩 (゜-゜)つロ 干杯~-bilibili ·
text=815 chars ·
bytes=26658 ·
jsonld=0 ·
sha=e70e987eee3330
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 26658 | 815 | 100% | e70e987eee | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| Chrome Mobile Human | 200 | 34588 | 737 | 90% | 8f7391d14f | 1 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| Googlebot Search | 200 | 34786 | 708 | 86% | e864a7d797 | 1 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| Bingbot Search | 200 | 26511 | 820 | 100% | 8469036dcb | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| GPTBot AI training | 200 | 2318 | 40 | 4% | a67e79824d | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| OAI-SearchBot AI search | 200 | 2318 | 40 | 4% | a67e79824d | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| ChatGPT-User AI live-fetch | 200 | 2318 | 40 | 4% | a67e79824d | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| ClaudeBot AI training | 200 | 2318 | 40 | 4% | a67e79824d | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| PerplexityBot AI search | 200 | 2318 | 40 | 4% | a67e79824d | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
| Applebot AI search | 200 | 27374 | 815 | 100% | byte-identical | 0 | 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili | — | — |
#27 · temu.com
·
text=0 chars ·
bytes=1348 ·
jsonld=0 ·
sha=e3b0c44298fc1c
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 1348 | 0 | — | e3b0c44298 | 0 | — | — | — |
| Chrome Mobile Human | 200 | 1349 | 0 | — | byte-identical | 0 | — | — | — |
| Googlebot Search | 200 | 1355 | 0 | — | byte-identical | 0 | — | — | — |
| Bingbot Search | 200 | 1354 | 0 | — | byte-identical | 0 | — | — | — |
| GPTBot AI training | 200 | 1360 | 0 | — | byte-identical | 0 | — | — | — |
| OAI-SearchBot AI search | 200 | 1354 | 0 | — | byte-identical | 0 | — | — | — |
| ChatGPT-User AI live-fetch | 200 | 1353 | 0 | — | byte-identical | 0 | — | — | — |
| ClaudeBot AI training | 200 | 1354 | 0 | — | byte-identical | 0 | — | — | — |
| PerplexityBot AI search | 200 | 1354 | 0 | — | byte-identical | 0 | — | — | — |
| Applebot AI search | 200 | 1351 | 0 | — | byte-identical | 0 | — | — | — |
#28 · twitch.tv
Twitch ·
text=6 chars ·
bytes=67847 ·
jsonld=1 ·
sha=a731a58c4cf35c
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 67847 | 6 | 100% | a731a58c4c | 1 | Twitch | — | — |
| Chrome Mobile Human | 200 | 69623 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| Googlebot Search | 200 | 69623 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| Bingbot Search | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| GPTBot AI training | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| OAI-SearchBot AI search | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| ChatGPT-User AI live-fetch | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| ClaudeBot AI training | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| PerplexityBot AI search | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
| Applebot AI search | 200 | 67847 | 6 | 100% | byte-identical | 1 | Twitch | — | — |
#29 · dzen.ru
·
text=0 chars ·
bytes=1988 ·
jsonld=0 ·
sha=e3b0c44298fc1c
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 1988 | 0 | — | e3b0c44298 | 0 | — | — | — |
| Chrome Mobile Human | 200 | 1991 | 0 | — | byte-identical | 0 | — | — | — |
| Googlebot Search | 200 | 327367 | 13052 | — | 63e5265740 | 0 | Дзен — главная новостная информационная платформа, которая помогает миллионам людей узнавать, что происходит в мире. | — | — |
| Bingbot Search | 200 | 371846 | 15386 | — | a1574b7717 | 0 | Дзен — главная новостная информационная платформа, которая помогает миллионам людей узнавать, что происходит в мире. | — | — |
| GPTBot AI training | 200 | 1848 | 0 | — | byte-identical | 0 | — | — | — |
| OAI-SearchBot AI search | 200 | 1858 | 0 | — | byte-identical | 0 | — | — | — |
| ChatGPT-User AI live-fetch | 200 | 1848 | 0 | — | byte-identical | 0 | — | — | — |
| ClaudeBot AI training | 200 | 1853 | 0 | — | byte-identical | 0 | — | — | — |
| PerplexityBot AI search | 200 | 1857 | 0 | — | byte-identical | 0 | — | — | — |
| Applebot AI search | 200 | 321017 | 4060 | — | 16dcccb0b3 | 0 | Дзен — главная новостная информационная платформа, которая помогает миллионам людей узнавать, что происходит в мире. | — | — |
#30 · microsoft.com
Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset ·
text=4150 chars ·
bytes=23559 ·
jsonld=0 ·
sha=7835da38688435
| User-Agent | HTTP | Bytes | Text chars | vs Chrome | SHA-256 | JSON-LD | <title> | <h1> | block reason |
|---|---|---|---|---|---|---|---|---|---|
| Chrome Desktop Human | 200 | 23559 | 4150 | 100% | 7835da3868 | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| Chrome Mobile Human | 200 | 23558 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| Googlebot Search | 200 | 23558 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| Bingbot Search | 200 | 23557 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| GPTBot AI training | 200 | 23557 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| OAI-SearchBot AI search | 200 | 23559 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| ChatGPT-User AI live-fetch | 200 | 23558 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| ClaudeBot AI training | 200 | 23556 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| PerplexityBot AI search | 200 | 23558 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
| Applebot AI search | 200 | 23558 | 4150 | 100% | byte-identical | 0 | Microsoft – tekoäly, pilvi, tuottavuus, tietojenkäsittely, pelaaminen ja sovellukset | Pelaa Forza Horizon 6 Xbox Series X|S:llä | — |
7 · How to read the SHA column
Each cell shows the first 10 characters of the SHA-256 of the normalized visible text (HTML stripped, whitespace collapsed). If two UAs share a hash, they got byte-identical content. If they differ, even by a single user-specific token, the hashes will diverge — useful for spotting personalization, A/B-test buckets, or country-specific bodies served to one UA family but not another.
8 · About PrerenderProxy
PrerenderProxy is the open custom-built pre-rendering layer behind a number of Finnish high-traffic sites (Elisa, Yritystele, …). It sits at the Fastly edge, detects crawler user-agents, and serves Puppeteer-rendered HTML snapshots to bots while regular users get the live SPA. The conceptual model is identical to what the Top 30 above are doing internally with Next.js / Nuxt / Angular Universal SSR — the difference is that PrerenderProxy retrofits the same property onto sites that can't easily migrate to a framework-native SSR path. See / for the dashboard (basic-auth required).