apexherbert200's picture
Added middleware
e264582
raw
history blame contribute delete
335 Bytes
import requests
url = "https://webrify1.p.rapidapi.com/seo"
querystring = {"url":"https://www.benchify.com"}
headers = {
"x-rapidapi-key": "cdb687459dmsh984de56912ae924p173d7fjsn78d4034f938d",
"x-rapidapi-host": "webrify1.p.rapidapi.com"
}
response = requests.get(url, headers=headers, params=querystring)
print(response.json())