home
home

API Documentation: DomainTypos

DomainTypos

This API call returns registered domain typos and misspellings for a domain name. A domain name with one character difference is defined as a typo. For example ddslytics.com is a typo domain for dnslytics.com. It does not return exact matched domains on other TLDs, use the DomainSearch API to find such domain names. This is a Premium API call, you have to buy API credits.

API request

https://api.dnslytics.net/v1/domaintypos/<domain>?apikey=<apikey>

API response

Example

URL

$ curl https://api.dnslytics.net/v1/domaintypos/dnslytics.com?apikey=<apikey>

Output

{
        "status": "succeed",
        "data":
        {
                "question":
                {
                  "domain": "dnslytics.com",
                  "page": 1,
                  "tld": "all",
                  "fromdate": "all"
                },
                "typeinfo": "domaintypos",
                "ndomains": 4,
                "domains":[
                        {
                          "domain": "ddslytics.com",
                          "length": 9
                        },
                        {"..."}
                ]
        }
}