Test our Web Scraper API directly in your browser
{
"status": "ready",
"message": "Enter your API key and URL, then click Run Request"
}
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())
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 -X POST \
https://api.shadowlogin.net/v1/scrape \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'