home
home

API Documentation: ReverseIP

ReverseIP

The ReverseIP API call returns domains hosted on the same IP address. It will only returns domains currently using an IP. Use the ReverseHistory API to find domains using an IP in the past. This is a Premium API call, you have to buy API credits.

API request

https://api.dnslytics.net/v1/reverseip/<ip or hostname>?apikey=<apikey>

API response

Example

URL

$ curl https://api.dnslytics.net/v1/reverseip/104.27.179.200?apikey=<apikey>

Output

{
        "status": "succeed",
        "data":
        {
                "question":
                {
                  "ip": "104.27.179.200",
                  "page": 1
                },
                "typeinfo": "reverseip",
                "ndomains": 138,
                "domains":[
                        "dnslytics.com",
                        "myip.report",
                        "..."
                ]
        }
}