An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

# Onemillion API/UI

[![Build Status](https://travis-ci.org/fhightower/onemillion-api.svg?branch=master)](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))
```