home
home

API Documentation: ReverseAdsense

ReverseAdsense

This API call returns domains using the same Google Adsense ID. It will only returns domains currently using the ID. Use the ReverseHistory API to find domains using a Google Adsense ID in the past. This is a Premium API call, you have to buy API credits.

API request

https://api.dnslytics.net/v1/reverseadsense/<pub id>?apikey=<apikey>

API response

Example

URL

$ curl https://api.dnslytics.net/v1/reverseadsense/pub-7232066202917795?apikey=<apikey>

Output

{
        "status": "succeed",
        "data":
        {
                "question":
                {
                  "adsenseid": "pub-7232066202917795",
                  "page": 1
                },
                "typeinfo": "reverseadsense",
                "ndomains": 2,
                "domains":[
                        {
                          "domain": "qrutils.com",
                          "firstseen": "2016-07-04",
                          "lastseen": "2019-10-23"
                        },
                        {"..."}
                ]
        }
}