SnoopScan
Playground

Try it. No account.

The same engine the API runs on. Read a page as markdown, map a site, crawl a few of its pages, or browse through the proxy, then copy the code that does it.

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