20 lines
393 B
Python
20 lines
393 B
Python
import requests
|
|
|
|
headers = {
|
|
"Host": "api.rightmove.co.uk",
|
|
# 'Accept-Encoding': 'gzip, deflate, br',
|
|
"User-Agent": "okhttp/4.10.0",
|
|
"Connection": "close",
|
|
}
|
|
|
|
params = {
|
|
"apiApplication": "ANDROID",
|
|
"appVersion": "3.70.0",
|
|
}
|
|
|
|
response = requests.get(
|
|
"https://api.rightmove.co.uk/api/property/119578451",
|
|
params=params,
|
|
headers=headers,
|
|
verify=False,
|
|
)
|