SnoopScan
Web unblocker

Paste a page that blocks you. Get it back.

A web unblocker for pages that bounce scripts and networks alike. Read it as clean markdown and links, or browse it through the proxy with no scripts, no cookies and no referrer. No account needed.

Try it on a competitor pricing page, a product listing, a docs page for your RAG index or a company about page — or one of these:

POST /v1/scrape
import requests

r = requests.post(
    'https://api.snoopscan.com/v1/scrape',
    headers={'Authorization': 'Bearer sk_YOUR_KEY'},
    json={
        'url': 'https://example.com/pricing',
        'formats': [
            'markdown',
            'links'
        ],
        'onlyMainContent': True
    },
)
print(r.json())
const r = await fetch('https://api.snoopscan.com/v1/scrape', {
  method: 'POST',
  headers: { Authorization: 'Bearer sk_YOUR_KEY', 'Content-Type': 'application/json' },
  body: JSON.stringify({
      "url": "https://example.com/pricing",
      "formats": [
          "markdown",
          "links"
      ],
      "onlyMainContent": true
  }),
});
console.log(await r.json());
curl -X POST https://api.snoopscan.com/v1/scrape \
  -H 'Authorization: Bearer sk_YOUR_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "url": "https://example.com/pricing",
    "formats": [
        "markdown",
        "links"
    ],
    "onlyMainContent": true
}'
200 · markdown · links · 1 credit, or 0 from cache
Why pages block you

Bot walls look at your IP, your TLS fingerprint and whether JavaScript ran. A plain request fails all three.

Read or browse

Read hands back the page as markdown and links. Browse loads it in a frame through the proxy, links rewritten, scripts and cookies stripped.

What it will not do

Log in as you, run scripts, or keep cookies. Sites that need those will not work here; the API has Interact for that.