How to find an exact link from a requests JSON response

Viewed 24

I am trying to find a link in a request response. The URL is: "https://freecash.com/auth/verify/" after the verify/ there's a 10 digit string. And after the link, there's after it and the line ends. Example: https://freecash.com/auth/verify/72e42f6315 Obviously the link is different every time I send that request. How would I find the link? The request response is HTML, here is the link to the response: https://pastebin.com/dYSFE3iz

Request code:

 z = requests.get(f"https://www.1secmail.com/api/v1/?action=readMessage&login={user}&domain={dom}&id={z[c]['id']}").json()

Thanks in advance!

0 Answers
Related