Skip to content

API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco: http://onemillion.hightower.space.

License

Notifications You must be signed in to change notification settings

fhightower/onemillion-api

Repository files navigation

Onemillion API/UI

Build Status

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.

Using the UI

Visit onemillion.hightower.space and have fun!

Using the API

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))

About

API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco: http://onemillion.hightower.space.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published