Code samples for the major languages | DNS Lookup API | WhoisXML API

Code samples for the major languages

Javascript Java C# NodeJS Perl PHP PowerShell Python Ruby
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
    var domain = "example.com";
    var apiKey = "Your DNS Lookup API Key";
    var type = "_all";

    $(function () {
        $.ajax({
            url: "https://www.whoisxmlapi.com/whoisserver/DNSService",
            dataType: "json",
            data: {apiKey: apiKey, domainName: domain, type: type},
            success: function(data) {
                $("body").append("<pre>"+ JSON.stringify(data,"",2)+"</pre>");
            }
        });
    });
</script>