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

推荐订阅源

WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
D
Docker
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
C
Check Point Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
M
MIT News - Artificial intelligence
B
Blog RSS Feed
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
美团技术团队
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Two Gates Are Closing on AI Web Scraping
Simon Paxton · 2026-05-14 · via DEV Community

Simon Paxton

Google narrowed developer access to its web-search tools in January, while Cloudflare documented broader controls for blocking or challenging AI crawlers. Together, those changes have made ai web scraping more constrained at both the search layer and the site-access layer.

The squeeze is practical, not abstract. Google’s changes affect how developers get URLs and search results at scale; Cloudflare’s controls affect whether bots can fetch the pages behind those URLs. For agent workflows that depended on cheap search-plus-scrape loops, ai web scraping now runs into two separate gates.

Google’s web-search products are narrowing for developers

Google said on January 20, 2026, that all new Programmable Search Engine setups must use the “Sites to search” feature, which limits them to site-specific search rather than broad web search. In the same announcement, Google said new free engines are capped at 50 domains.

The company also said the Custom Search JSON API is closed to new customers. Existing customers can continue using it until January 1, 2027, when they must transition to other options.

Google pointed affected users to two paths: Vertex AI Search for up to 50 domains, and a separate full-web search option available through contacting sales. Google’s announcement did not list public pricing for that full-web route.

That is the search-side change in ai web scraping: broad, low-friction developer access to Google-backed web search is being reduced, while replacement products move either toward site-limited search or sales-led access.

Cloudflare is adding more barriers for AI bots

Cloudflare’s developer documentation says site owners can block or challenge AI bots and crawlers through its bot management controls. The company describes these as tools for managing automated access from AI services collecting web content.

The docs list separate options to block known AI bots, issue challenges, and create rules for traffic handling. In practice, that means a site using Cloudflare can make the retrieval half of ai web scraping fail even after an agent has already found the target page.

Cloudflare has been building these controls into the normal admin workflow, which matters because deployment gets easier as the feature set gets simpler. That sits alongside a broader pattern already visible on the web: as we noted when bots surpassed humans, automated traffic is no longer a side case for site operators.

Search and scraping workarounds are already in use

Public alternatives already exist for developers who need search without Google’s older product path. The research brief cites Brave Search API and SearXNG as current options in use, though only YaCy and LLMSearchIndex are included here as source-backed tools.

There is also a clean split between search and retrieval. Search APIs can still return links; fetching the content behind those links is where Cloudflare-style defenses bite. That distinction is why some teams have shifted toward cached material, reader services, or prebuilt local corpora instead of live page retrieval on every query.

That same pattern shows up in local-first agent setups. A local index reduces how often a model needs external fetches, which cuts both API costs and bot-wall friction. We covered a related version of that tradeoff in our piece on local AI memory and search, where local retrieval handled part of the knowledge workload before the model reached for the web.

YaCy and local indexes show the main alternatives

YaCy is one of the oldest decentralized search options still running. On its official site, the project describes itself as free software for running your own search engine locally, within an organization, or as part of a decentralized network.

According to YaCy’s documentation and background material, each peer can crawl and index pages locally, then share index data across a peer-to-peer network. YaCy can also run in a local mode, including as a proxy that indexes pages visited by the user. That makes it both a distributed search engine and a self-hosted search appliance.

LLMSearchIndex takes a different route: a local index for retrieval-augmented generation rather than a live web search network. Its GitHub repository says it is trained on 203,169,792 web pages sourced from Wikipedia and FineWeb, and can run with roughly 6 GB RAM and 10 GB disk space, with CPU inference supported.

That makes the alternatives fairly concrete. YaCy is a decentralized crawler-and-index system. LLMSearchIndex is a compact local retrieval layer built from existing datasets. Neither is a drop-in replacement for the old “cheap broad web search plus scrape everything” workflow, but both are documented, available tools for reducing dependence on live external search and fetches. For developers watching token and retrieval costs closely, that sits next to the same budgeting discipline seen in Claude Code token usage: move expensive external calls out of the hot path when possible.

Key Takeaways

  • Google said new Programmable Search Engine setups must use site-specific search and free engines are limited to 50 domains.
  • Google closed the Custom Search JSON API to new customers and gave existing users until January 1, 2027 to transition.
  • Cloudflare documents tools that let site owners block or challenge AI bots and crawlers.
  • In ai web scraping, the search step and the page-retrieval step are now being tightened by different companies at the same time.
  • YaCy and LLMSearchIndex are two documented alternatives for decentralized or local search workflows.

Further Reading


Originally published on novaknown.com