top of page

Email-OTP

Type

Api

Get

to

* check  spam folder if not in inbox

import requests
query_params = {"to": "visandreams@gmail.com"}
otp=requests.get("https://viswa.pythonanywhere.com/send_otp", params=query_params)
print(otp.json())

bottom of page