How to lookup domain WHOIS in PHP
3 min readAug 1, 2019
Let’s make this super easy. We will start by adding our desired API to our library with the following reference:
"require": {
"cloudmersive/cloudmersive_validate_api_client": "^1.4",
}
Then call the function domainPost:
<?php
require_once(__DIR__ . '/vendor/autoload.php');// Configure API key authorization: Apikey
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY');$apiInstance = new Swagger\Client\Api\DomainApi(
new GuzzleHttp\Client(),
$config
);
$domain = "domain_example"; // string | Domain name to check, for example \"cloudmersive.com\". The input is a string so be sure to enclose it in double-quotes.try {
$result = $apiInstance->domainPost($domain);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DomainApi->domainPost: ', $e->getMessage(), PHP_EOL;
}
?>
Our output for today’s example, yahoo.com, looks like this:
{
"ValidDomain": true,
"WhoisServer": "whois.verisign-grs.com",
"RawTextRecord": "Domain Name: yahoo.com\r\nRegistry Domain ID: 3643624_DOMAIN_COM-VRSN\r\nRegistrar WHOIS Server: whois.markmonitor.com\r\nRegistrar URL: http://www.markmonitor.com\r\nUpdated Date: 2018-10-23T11:09:46-0700\r\nCreation Date: 1995-01-18T00:00:00-0800\r\nRegistrar Registration Expiration Date: 2023-01-18T21:00:00-0800\r\nRegistrar: MarkMonitor, Inc.\r\nRegistrar IANA ID: 292\r\nRegistrar Abuse Contact Email: abusecomplaints@markmonitor.com\r\nRegistrar Abuse Contact Phone: +1.2083895740\r\nDomain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)\r\nDomain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)\r\nDomain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)\r\nDomain Status: serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)\r\nDomain Status: serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)\r\nDomain Status: serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)\r\nRegistry Registrant ID: \r\nRegistrant Name: Domain Admin\r\nRegistrant Organization: Oath Inc.\r\nRegistrant Street: 22000 AOL Way\r\nRegistrant City: Dulles\r\nRegistrant State/Province: VA\r\nRegistrant Postal Code: 20166\r\nRegistrant Country: US\r\nRegistrant Phone: +1.4083493300\r\nRegistrant Phone Ext: \r\nRegistrant Fax: \r\nRegistrant Fax Ext: \r\nRegistrant Email: domain-admin@oath.com\r\nRegistry Admin ID: \r\nAdmin Name: Domain Admin\r\nAdmin Organization: Oath Inc.\r\nAdmin Street: 22000 AOL Way\r\nAdmin City: Dulles\r\nAdmin State/Province: VA\r\nAdmin Postal Code: 20166\r\nAdmin Country: US\r\nAdmin Phone: +1.4083493300\r\nAdmin Phone Ext: \r\nAdmin Fax: \r\nAdmin Fax Ext: \r\nAdmin Email: domain-admin@oath.com\r\nRegistry Tech ID: \r\nTech Name: Domain Admin\r\nTech Organization: Oath Inc.\r\nTech Street: 22000 AOL Way\r\nTech City: Dulles\r\nTech State/Province: VA\r\nTech Postal Code: 20166\r\nTech Country: US\r\nTech Phone: +1.4083493300\r\nTech Phone Ext: \r\nTech Fax: \r\nTech Fax Ext: \r\nTech Email: domain-admin@oath.com\r\nName Server: ns3.yahoo.com\r\nName Server: ns5.yahoo.com\r\nName Server: ns1.yahoo.com\r\nName Server: ns4.yahoo.com\r\nName Server: ns2.yahoo.com\r\nDNSSEC: unsigned\r\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\r\n>>> Last update of WHOIS database: 2019-05-18T17:14:15-0700 <<<\r\n\r\nFor more information on WHOIS status codes, please visit:\r\n https://www.icann.org/resources/pages/epp-status-codes\r\n\r\nIf you wish to contact this domain’s Registrant, Administrative, or Technical\r\ncontact, and such email address is not visible above, you may do so via our web\r\nform, pursuant to ICANN’s Temporary Specification. To verify that you are not a\r\nrobot, please enter your email address to receive a link to a page that\r\nfacilitates email communication with the relevant contact(s).\r\n\r\nWeb-based WHOIS:\r\n https://domains.markmonitor.com/whois\r\n\r\nIf you have a legitimate interest in viewing the non-public WHOIS details, send\r\nyour request and the reasons for your request to whoisrequest@markmonitor.com\r\nand specify the domain name in the subject line. We will review that request and\r\nmay ask for supporting documentation and explanation.\r\n\r\nThe data in MarkMonitor’s WHOIS database is provided for information purposes,\r\nand to assist persons in obtaining information about or related to a domain\r\nname’s registration record. While MarkMonitor believes the data to be accurate,\r\nthe data is provided \"as is\" with no guarantee or warranties regarding its\r\naccuracy.\r\n\r\nBy submitting a WHOIS query, you agree that you will use this data only for\r\nlawful purposes and that, under no circumstances will you use this data to:\r\n (1) allow, enable, or otherwise support the transmission by email, telephone,\r\nor facsimile of mass, unsolicited, commercial advertising, or spam; or\r\n (2) enable high volume, automated, or electronic processes that send queries,\r\ndata, or email to MarkMonitor (or its systems) or the domain name contacts (or\r\nits systems).\r\n\r\nMarkMonitor.com reserves the right to modify these terms at any time.\r\n\r\nBy submitting this query, you agree to abide by this policy.\r\n\r\nMarkMonitor is the Global Leader in Online Brand Protection.\r\n\r\nMarkMonitor Domain Management(TM)\r\nMarkMonitor Brand Protection(TM)\r\nMarkMonitor AntiCounterfeiting(TM)\r\nMarkMonitor AntiPiracy(TM)\r\nMarkMonitor AntiFraud(TM)\r\nProfessional and Managed Services\r\n\r\nVisit MarkMonitor at https://www.markmonitor.com\r\nContact us at +1.8007459229\r\nIn Europe, at +44.02032062220\r\n\r\n",
"CreatedDt": null
}
That’s it, we’re done.