File size: 335 Bytes
e264582
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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())