https://github.com/fhightower/onemillion-api
API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco: http://onemillion.hightower.space.
https://github.com/fhightower/onemillion-api
alexa api cisco domainlist threat-intelligence
Last synced: 4 months ago
JSON representation
API/UI Interface to check if a domain is in a top million domain lists from Alexa or Cisco: http://onemillion.hightower.space.
- Host: GitHub
- URL: https://github.com/fhightower/onemillion-api
- Owner: fhightower
- License: mit
- Created: 2018-01-06T11:07:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-20T13:40:40.000Z (over 8 years ago)
- Last Synced: 2025-07-04T07:07:09.011Z (11 months ago)
- Topics: alexa, api, cisco, domainlist, threat-intelligence
- Language: HTML
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Onemillion API/UI
[](https://travis-ci.org/fhightower/onemillion-api)
View it at [onemillion.hightower.space](http://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](https://github.com/fhightower/onemillion) python package.
## Using the UI
Visit [onemillion.hightower.space](http://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](https://github.com/requests/requests) package:
```python
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))
```