Rank Check — Tranco
curl https://tranco-list.eu/rank/example.com
"google.com": 1, "facebook.com": 4, "yourdomain.com": null tranco rank check
if response.status_code == 200 and response.text.strip(): print(f"Tranco rank: response.text.strip()") else: print(f"domain not in top 1M Tranco list") Download the latest top 1 million list: curl https://tranco-list
12345 If the domain is not in the top 1 million, the response is empty. tranco rank check
Response:
import requests domain = "example.com" response = requests.get(f"https://tranco-list.eu/rank/domain")