A web-based API and UI tool to verify if a domain is listed in the top million domains from Alexa or Cisco.
API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco: http://onemillion.hightower.space.
This tool is used by security analysts and researchers to quickly check if a domain is ranked among the top million popular domains, aiding in threat intelligence and OSINT investigations. It provides a simple API and web interface for automated or manual lookups to support network monitoring and domain reputation assessments.
The tool relies on external top million domain lists from Alexa and Cisco, which may be subject to updates or deprecation. Since it is primarily a web service, no local installation steps are provided. Users should ensure network access to the hosted API endpoint and consider rate limiting or usage policies when integrating.
POST http://onemillion.hightower.space/onemillion {"domain": "example.com"}
Send a POST request with a domain to check if it is in the top million list.
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))
Python example using requests library to query the API and print the domain's rank.