CONCEPT Cited by 2 sources
Agentic traffic share¶
Agentic traffic share is the fraction of HTTP traffic originating from AI-driven automated clients — LLM-based agents, AI-assisted development tools, AI-crawlers (for training + indexing), and AI-search backends — rather than from human-initiated browser sessions.
Measured against Cloudflare's network in March 2026:
| Metric | Value | Source |
|---|---|---|
| Bots share of all HTTP requests | ~31.3 % | radar.cloudflare.com/bots |
| AI share of bot traffic | ~29-30 % | radar.cloudflare.com/explorer |
| Agentic-actor share of total requests | ~10 % | Derived (31.3 × 29-30 = ~9-9.5 %) |
| YoY growth in agentic share | +60 % | March 2026 vs March 2025 |
The ~10 % / +60 % YoY figures are the load-bearing numbers in the 2026-04-17 shared-dictionaries launch post and recur in the Agents Week network-performance update from the same week.
Why the share matters for systems design¶
Agentic clients differ from human clients in ways that stress serving infrastructure:
- Higher request-per-page ratio. Agents often hit an endpoint, extract a fragment, go back and re-hit adjacent endpoints — rather than a single page-load sequence.
- More repeat-visit traffic. Agents crawl the same URLs repeatedly as part of training + indexing cycles. Bundler chunk invalidation on every deploy gets paid by every agent session, not amortised across a shared browser cache.
- Fewer per-client bytes cached locally. Agents are often stateless or short-lived processes; the value of the browser's HTTP cache is less realised.
- Less tolerance for latency, more tolerance for payload size — or the opposite, depending on the agent class. The mix shifts the operator's optimisation surface.
Load on the compression stack specifically¶
For Cloudflare's 2026-04-17 shared-dictionaries framing: agentic clients mean more requests to heavier pages after more frequent deploys. Each of those is a compounding multiplier on bytes-per-request, and each is paid per agent session. Shared-dictionary compression is positioned as the compression answer because it cuts the redundant-bytes-per- request cost even when the URL churns.
Measurement authority¶
Cloudflare Radar is the public measurement surface for agentic-traffic-share numbers:
- Bots dashboard — top- level bots-vs-humans split.
- Bots directory — per-bot traffic detail.
- Bots explorer — share by bot category (AI Crawler / AI Assistant / AI Search / Search Engine / Other).
- AI Insights — response-status-code distributions per AI bot (introduced by Redirects for AI Training launch).
Seen in¶
- sources/2026-04-17-cloudflare-shared-dictionaries-compression-that-keeps-up-with-the-agent — "Agentic actors represented just under 10 % of total requests across Cloudflare's network during March 2026, up ~60 % year-over-year." Footnote: bots = ~31.3 %, AI = ~29-30 % of bot traffic.
- sources/2026-04-17-cloudflare-agents-week-network-performance-update — same Agents Week framing; numbers recur.