Google's 'goto' Update Targets Web Scraping Bots
Google's new /goto URL pattern isn't just another bot-blocking tweak. It's a fundamental shift in how the search giant treats the open web, and honestly, it's got me thinking about the quiet power dynamics we've all been living with for years.
Starting August 27, 2026, Google began redirecting search result clicks through a /goto?url= intermediary layer. Click a link, and you're briefly routed through Google's own infrastructure before landing on the actual destination. Technically, it's positioned as an anti-scraping measure—which, sure, makes sense on the surface. But peel that back, and you're looking at something more consequential: Google inserting itself as a mandatory middleman in what used to be a direct path from search to website.
For indie developers, this means another layer of analytics opacity—your traffic now passes through Google's pipes, and good luck parsing what's real versus what's filtered. For enterprise SEO teams, it's a reminder that Google's definition of "organic traffic" is increasingly a matter of their own construction. The open web has always operated on the principle of direct linking, but /goto quietly erodes that. It's the kind of change that feels small until you realize how much control it actually represents.
So what happens when the gateway to the web becomes the gatekeeper of the web? I dug into the technical mechanics, the pushback from publishers, and what this means for anyone building anything that depends on search traffic.
What the "goto" Update Actually Does
The goto update changes how Google handles automated requests to search result pages. Instead of returning a CAPTCHA or blocking the request outright, Google now responds with a 302 redirect to a consent.google.com URL. That redirect includes a query parameter called nc (short for "no consent"), which tells Google's consent manager that the user hasn't accepted the cookie banner. The consent manager then serves a JavaScript-heavy page that sets cookies and redirects back to the original search URL — but only after the browser executes the script.
This matters because it shifts the burden of handling the redirect chain onto the client. Previous anti-scraping measures like CAPTCHAs could be solved with OCR or third-party services. The goto flow requires a browser engine that can execute JavaScript, manage cookies across domains, and follow multi-step redirects. Tools like requests or curl fail immediately because they don't run JS. You need something like Puppeteer or Playwright.
For someone running automated searches, the practical impact is immediate. A simple Python script that used to work:
import requests
url = "https://www.google.com/search?q=example"
response = requests.get(url)
print(response.status_code) # Used to return 200, now returns 302
Now needs to become a headless browser setup:
from playwright.sync_api import sync_playwright
url = "https://www.google.com/search?q=example"
with sync_playwright() as p:
browser = p.chromium.launch(headless=True)
page = browser.new_page()
page.goto(url, wait_until="networkidle")
print(page.title()) # Will show search results page title
browser.close()
The difference isn't just about tooling — it's about intent. Google isn't just trying to stop scrapers anymore. This redirect chain is designed to enforce consent management. Every request, automated or not, has to pass through the consent flow. That's why someone said they switched to ChatGPT entirely. It’s not paranoia about being tracked; it’s that Google made automated access so cumbersome that alternatives look reasonable.
Who Wins, Who Loses
The search ecosystem never looked more fragmented. Google's dominance is cracking not because of one competitor, but because the entire model of "search as destination" is giving way to "search as conversation." That shift hits different stakeholders in different ways.
SEO tool vendors built their businesses on reverse-engineering Google's algorithm updates. Ahrefs, SEMrush, and SimilarWeb spent years tracking ranking factors, backlink profiles, and keyword difficulty scores. Now they're scrambling to track AI-generated answers instead. Ahrefs launched its own AI search crawler last year, but it captures maybe 2% of what Google's traditional index once contained. The data richness that made these tools valuable is evaporating.
Data brokers face a more immediate crisis. Companies like Acxiom and Experian built revenue models around collecting search behavior and selling it to advertisers. But if users are having conversations with ChatGPT instead of typing queries into Google, that behavioral data becomes fragmented across platforms. OpenAI doesn't share chat logs with third parties the way Google once shared search data with its ad partners. Some brokers are pivoting to "prompt analytics" — trying to infer user intent from the questions people ask AI models — but it's a smaller, messier dataset.
Academic researchers who studied search behavior are watching their field become historically relevant overnight. Google's search API gave researchers access to millions of queries for studying language evolution, information-seeking patterns, and even mental health trends. OpenAI's API exists but comes with strict rate limits and no historical archive. A 2023 study on depression-related search queries across five years of Google data simply can't be replicated with current AI chat platforms.
Everyday users benefit from the shift in ways that are obvious but hard to quantify. Instead of parsing through ten blue links, they get synthesized answers. But they also lose something: the ability to serendipitously discover information through browsing. ChatGPT doesn't show you the tenth result that might have been better than the first.
The winners here aren't the companies trying to replace Google — they're the users who never fully trusted Google's data collection practices in the first place. Privacy-focused search engines like DuckDuckGo and Neeva saw enrollment spikes in 2023, not because they suddenly got better, but because the conversation around search privacy became mainstream.
The Strategic Shift: From Blocking to Obfuscation
Google's move to base64-encoded protobuf redirect URLs feels less like a technical necessity and more like deliberate obfuscation. The encoding adds latency without clear user benefit, which suggests this is primarily about making it harder for scrapers and automated tools to extract search results efficiently. I'm skeptical this significantly impacts Google's core ad business, but it does raise the bar for researchers, archivists, and anyone building tools that depend on parsing search results programmatically.
The community response reveals something more interesting than the technical change itself: the erosion of trust. When your own developer tools team is switching to ChatGPT for search because quality has declined, that's not just a product problem—it's a platform problem. The ClearURLs workaround proves the obfuscation is superficial, which makes Google look less like a security-focused company and more like one desperately trying to protect a declining advantage.
This feels like a defensive move from a company that's losing ground in search quality and is now making the platform harder to analyze or improve upon. The real question isn't whether these URL changes work technically—they don't, not for anyone determined enough to decode them—but whether this strategy of friction and opacity can actually reverse the underlying trend of users finding better answers elsewhere.
The Bigger Picture: The Closing of the Web
This is Google making a cost-benefit decision that used to be off the table: degrade the experience for every person using search to make scraping harder for AI companies. The redirect URLs are slower, they hide where a link actually goes (a base64 blob of protobuf isn't exactly human-readable), and they break the basic habit of copying a URL to share it. That's not a side effect. That's the product. Google is betting that the trust users place in its search results outweighs the annoyance of not knowing what's behind the link. For a company that built its name on direct answers, that's a meaningful retreat.
The community reaction tells me two things. First, the ClearURLs workaround is a temporary patch, not a solution. Google controls the encoding; if enough people use the addon, Google will change the format or start serving the redirect through a different path. The arms race will continue, and the cost of that race is paid in latency and complexity. Second, the person who says "I switched to ChatGPT for search" is the more important signal. The people who notice this change and care enough to do something about it are exactly the ones who have another option. That doesn't make the change unimportant — it makes it a self-selecting migration. The users who stay won't care about the redirects, and the users who care will leave. Google may end up with a more scrape-resistant index and a less demanding audience, but it's not clear that's the same thing as a better search engine.
What's actually closing here is the transparent web. Search used to be a window into the open internet; now it's a mediated layer that shows you what Google wants you to see, with URLs that are opaque by design. That matters for the people who treat URLs as information — journalists, researchers, anyone who uses search as a starting point for verification. It matters less for the majority who just click the first result. I think the deeper issue is that Google is no longer confident it can keep the web open and still keep its own product valuable. So it's choosing to close the window.
Here's my prediction: this won't be reversed. Google will keep obfuscating, ClearURLs will keep breaking, and the gap between what search gives you and what the web actually is will widen. The question I keep coming back to: if you can't trust the destination of a link from the world's most trusted search engine, what's the point of the link at all?
Conclusion
Google's goto update represents a subtle but meaningful shift in how the company approaches automated access to its search results,not by slamming doors shut, but by making the path harder to follow. Instead of outright blocking scrapers, Google now wraps outbound links in redirect URLs like google.com/goto?q=[destination], forcing bots to resolve an extra hop to reach the final destination. This isn't just a technical tweak; it's a strategic pivot from detection and blocking to obfuscation and friction.
The implications are uneven. Companies with deep pockets and sophisticated infrastructure,like enterprise SEO tools or large-scale aggregators,can likely adapt by handling redirects programmatically, perhaps with HEAD requests or smarter session management. Smaller players, especially indie developers or startups relying on lightweight scraping scripts, may find themselves slowed or stopped entirely. That disparity matters because it reinforces Google's control over who gets to build on top of its platform,not through policy alone, but through technical barriers that scale with resources.
I’m not convinced this closes the web so much as it tightens Google’s grip on how we move through it. The goto wrapper doesn’t stop scraping,it slows it down, taxes it, makes it more expensive. And that’s arguably more effective than a hard block. Whether this move accelerates the trend toward authenticated APIs and paid data access remains to be seen. But one thing is clear: Google isn’t just defending its SERPs anymore. It’s reshaping the economics of access.