URL shortener service
CleanURI is a simple URL shortener service providing an API to generate short links from long URLs.
import requests
url = "https://cleanuri.com/api/v1/shorten"
long_url = "https://google.com/"
payload = {'url': long_url}
response = requests.post(url, data=payload)
print(response.json())Last 50 checks (10 min intervals)