View it at onemillion.hightower.space.
API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco. This project is built on the onemillion python package.
Visit onemillion.hightower.space and have fun!
Make a POST request to http://onemillion.hightower.space/onemillion
that includes the domain you would like to check.
POST http://onemillion.hightower.space/onemillion
{"domain": "example.com"}
Here is a python snippet using the requests package:
import requests
domain = "example.com"
r = requests.post("http://onemillion.hightower.space/onemillion", {'domain': domain})
if r.ok:
print("{} is ranked {}".format(domain, r.text))