home
home

API Documentation: ReverseGAnalytics

ReverseGAnalytics

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

API request

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

API response

Example

URL

$ curl https://api.dnslytics.net/v1/reverseganalytics/ua-15589237?apikey=<apikey>

Output

{
        "status": "succeed",
        "data":
        {
                "question":
                {
                  "ganalyticsid": "ua-15589237",
                  "page": 1
                },
                "typeinfo": "reverseganalytics",
                "ndomains": 2,
                "domains":[
                        {
                          "domain": "dnslytics.com",
                          "firstseen": "2018-05-17",
                          "lastseen": "2020-02-20"
                        },
                        {"..."}
                ]
        }
}