Feature: serp

Cloudflare Health Signal

Per-target signal that reports whether Cloudflare challenges, Turnstile, or managed blocks are currently active on a domain.

What is Cloudflare Health Signal?

Cloudflare Health Signal is the Scavio endpoint that reports, for a given domain, whether Cloudflare's bot management is currently interstitial, Turnstile is deployed, or the domain is challenge-free. Scavio updates the signal continuously from its own traffic across the target, so callers can gate internal scrapers, preempt retry storms, and route around newly hardened targets before wasting budget.

Example Response

JSON
{ "domain": "example.com", "cloudflare": true, "turnstile": true, "challenge_rate": 0.92, "recommendation": "use_scavio" }

Use Cases

  • Pre-flight checks before internal scrapers run
  • Routing decisions between internal infra and Scavio
  • Retry-storm prevention in agent loops
  • Vendor-selection automation based on live target state

Why Cloudflare Health Signal Matters

Retry storms into Cloudflare-protected domains burn credits and trigger IP bans; knowing the target's current block posture before the call saves both.

LangChain Example

Drop cloudflare health signal data into your LangChain agent in a few lines:

Python
scavio.health.cloudflare(domain="example.com")

Frequently Asked Questions

Send a search request with the appropriate platform (google) and Scavio returns cloudflare health signal data in the response. See the example above for the exact field path.

Yes. Scavio fetches cloudflare health signal data in real time on each request. There is no caching layer and no stale data.

Cloudflare Health Signal is the Scavio endpoint that reports, for a given domain, whether Cloudflare's bot management is currently interstitial, Turnstile is deployed, or the domai

Cloudflare Health Signal data is returned as part of the standard search response. Each request costs 1 credit. Free tier includes 500 credits/month.

Start Using Cloudflare Health Signal

Per-target signal that reports whether Cloudflare challenges, Turnstile, or managed blocks are currently active on a domain.