import json
import requests
# Заголовки, обрати внимание на Ajax
headers = {
"Accept": "*/*",
"X-Is-Ajax-Request": "X-Is-Ajax-Request",
"X-Request-with": "XMLHttpRequest",
"X-User-Agent": "grpc-web-javascript/0.1"
}
def get_data():
# Тут твой url
url = ""
r = requests.get(url=url, headers=headers)
# Проверяем на джсон
print(r.json)
# Сохраняешь ответ в джсон файл
with open("r.json", "w") as file:
json.dump(r.json(), file, indent=4, ensure_ascii=False)