惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
WordPress大学
WordPress大学
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
博客园 - Franky
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
Jina AI
Jina AI
Last Week in AI
Last Week in AI
雷峰网
雷峰网
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX

SerpApi

Getting Started with Jev: Building a Fact Checker with SerpApi Vessel 0.3: Ruby finally gets its Scrapy crawling framework How to scrape Google Play Store app reviews Scrape YouTube Channel Data with SerpApi How to scrape movie and TV results from the Google Play Store SerpApi Weekly Changelog: Sep 07 - 13, 2026 Introducing MCP Bundle Support for SerpApi SerpApi Weekly Changelog: Aug 31 - Sep 06, 2026 We Have Resolved the Google /goto URL Redirect Rollout How to scrape Zillow Reddit promised its users an open internet. Then it closed the door. SerpApi Weekly Changelog: August 24 - 30, 2026 Best web scraping tools in 2026 How to Scrape Walmart Reviews Results Understanding HTTP 429: Too Many Requests Google tried again. We’re moving to dismiss a second time. SerpApi Weekly Changelog: August 17 - 23, 2026 Introducing SerpApi's New Markdown Output SerpApi Surpasses 1.5 Million Activated User Accounts How a Lead Generation Company Scaled Outreach with SerpApi's Google Maps API SerpApi Weekly Changelog: August 10 - 16, 2026 How to scrape book results from the Google Play Store What is an API? Part 3: Dynamic Data Displays with D&D! We Filed an Amicus Brief in U.S. v. Google How to scrape Google Play Store game information SerpApi Weekly Changelog: August 03 - 09, 2026 Introducing SerpApi Search Tools: Real-Time Web Search for Python AI Agents Measuring World Cup Attention: What the data says about Vozinha SerpApi Weekly Changelog: July 27 - August 02, 2026 How to Scrape Google Maps Autocomplete
Google’s New /goto Redirect URLs: Resolution in Progress
Hilman Ramadhan · 2026-08-31 · via SerpApi
Blog  /  Google

Google is rolling out new /goto redirect URLs across Search. SerpApi is resolving affected links as the implementation evolves.

2 min read

Google is rolling out a new URL format across its search results. Instead of linking directly to the destination page, some results now use a google.com/goto URL that redirects users through Google first.

goto URL redirect on Google results

This change may cause some URLs returned by web scraping tools, including SerpApi, to contain Google’s intermediary /goto link instead of the direct destination URL.

Current Status

Our engineering team is actively working to resolve these URLs across all affected search result types. We have already made progress, but Google’s implementation continues to evolve and may vary across different search features.

No changes are required to your SerpApi integration. We will continue deploying improvements on our side and monitoring the rollout for new variations.

We received a report that this change is affecting:
- Google Search API
- Google Search Light API
- Google News Light API
- Google Videos API
- Google AI Overview API

Upon testing in Google directly, we indeed see the /goto link is all over the place, not just in organic results.

The direct destination is still present within Google’s /goto URL, but it is encoded using Protocol Buffers (protobuf). Because Google introduced the change gradually, we resolve each variation as it appears.

If you encounter a google.com/goto URL in a SerpApi response, please send the Search ID to contact@serpapi.com. This will help our team identify and investigate the specific variation.

What is the Google goto redirect?

Google began testing the new URL format earlier in 2026. Search Engine Roundtable first reported the test in July, after observers noticed result links being rewritten into a format similar to:

https://www.google.com/goto?...

When clicked in a browser, the URL passes through Google before redirecting to the page displayed in the search result.

By late August, the change had expanded significantly. The rollout was not limited to the standard organic results. We received different reports that the redirect link appeared across multiple result types: Google Videos, Google Lens, and others.

Previously, our customers were also reporting that they just see a plain string with this form CAES{....} as the link. We've quickly resolved this and returned the actual link, which is this new redirect goto URL:

google.com/goto?url=CAES..

What is Protobuf?

Protocol Buffers (Protobuf) is a statically typed data serialization format developed and used extensively by Google. Its purpose is similar to JSON, but it is significantly more compact, faster to serialize and deserialize, and requires a predefined message schema for both encoding and decoding.

Read more about decoding Protobuf here.

While it did not change the visible result title, snippet, position, or other parsed data, it made the link field less useful for workflows that rely on direct URLs. Businesses that need to monitor which page shows up or just check their ranking in general are now blocked by this.

Potentially affected workflows included:

  • Rank tracking and SEO analysis
  • Citation and source extraction
  • AI agents and RAG pipelines
  • Link analysis and content discovery
  • Applications that store or compare destination URLs

Search engines are constantly evolving. Changes like this are why teams rely on SerpApi instead of maintaining their own Google Search parsers. Our goal is to adapt to these changes while keeping your API responses stable, structured, and ready to use.