API Playground

Test our Web Scraper API directly in your browser

Request Builder

Response

Ready
{
  "status": "ready",
  "message": "Enter your API key and URL, then click Run Request"
}

Code Examples

Python

import requests

resp = requests.post(
    "https://api.shadowlogin.net/v1/scrape",
    headers={"X-API-Key": "YOUR_KEY"},
    json={"url": "https://example.com"}
)
print(resp.json())

Node.js

const resp = await fetch(
  'https://api.shadowlogin.net/v1/scrape',
  {
    method: 'POST',
    headers: {
      'X-API-Key': 'YOUR_KEY',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      url: 'https://example.com'
    })
  }
);
console.log(await resp.json());

cURL

curl -X POST \
  https://api.shadowlogin.net/v1/scrape \
  -H "X-API-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com"}'