home
home

API Documentation: DomainSearch

DomainSearch

This API call returns registered and previously registered domain names based on one or more keywords. This is a Premium API call, you have to buy API credits.

API request

https://api.dnslytics.net/v1/domainsearch/<keyword>?apikey=<apikey>

API response

Example

URL

$ curl https://api.dnslytics.net/v1/domainsearch/dns|lytics?apikey=<apikey>&tld=com&active=1

Output

{
        "status": "succeed",
        "data":
        {
                "question":
                {
                  "terms": "dns|lytics",
                  "page": 1,
                  "tld": "com",
                  "active": "1",
                  "minlength": 3,
                  "maxlength": 256
                },
                "typeinfo": "domainsearch",
                "ndomains": 11,
                "domains":[
                        {
                          "domain": "dnslytics.com",
                          "length": 9,
                          "active": true
                        },
                        {"..."}
                ]
        }
}