I've written a short script and I have a chance to improve it if I get access to the certain data presented on screen. Is it possible somehow to requests this data with requests library? I need to get a user with a particular id which I gather with my 2nd script. I just need to know if it is possible because I could not find any answer on that.
This is the code. Link comes from headers tab:
import requests
url = "https://www.thecrims.com/api/v1/nightclub"
payload = {"id":"17713682"}
r = requests.post(url, params=payload)