illphated
import requests
url = “https://scraper-api.smartproxy.com/v2/scrape”
payload = {
“url”: “https://illphated.com”,
“headless”: “html”
}
headers = {
“accept”: “application/json”,
“content-type”: “application/json”,
“authorization”: “Basic VTAwMDAyNTgzOTk6UFdfMWFhYWQ3M2E0ZGY2OTAyZGE3Njg3OWU0NTZlNzM0YjJk”
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)