Title: | Lookup 'WHOIS' Information for a Particular Domain |
---|---|
Description: | Easily implement the checking of 'WHOIS' information for a particular domain. 'IP2WHOIS' supports the query for 1113 Top-level Domains(TLDs) and 634 Country Code Top-level Domains(ccTLDs). To get started with a free API key, you may sign up at here <https://www.ip2whois.com/register>. |
Authors: | IP2WHOIS [aut, cre] |
Maintainer: | IP2WHOIS <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.0 |
Built: | 2024-11-05 06:51:32 UTC |
Source: | CRAN |
Get domain extension from a URL or domain.
get_domain_extension(url)
get_domain_extension(url)
url |
The URL or domain. |
Return normal domain name in text
## Not run: get_domain_extension("example.com") ## End(Not run)
## Not run: get_domain_extension("example.com") ## End(Not run)
Get Normat Text from a punycode for domain name.
get_normal_text(domain)
get_normal_text(domain)
domain |
The punycode domain name |
Return normal domain name in text
## Not run: get_normal_text("xn--tst-qla.de") ## End(Not run)
## Not run: get_normal_text("xn--tst-qla.de") ## End(Not run)
Get Punycode for domain name.
get_punycode(domain)
get_punycode(domain)
domain |
domain name to get punycode for |
Return the converted punycode of the domain
## Not run: get_punycode("täst.de") ## End(Not run)
## Not run: get_punycode("täst.de") ## End(Not run)
Lookup for a comprehensive of the WHOIS information
lookup(domain)
lookup(domain)
domain |
domain name to lookup for |
Return the WHOIS information about the domain
## Not run: lookup("example.com") ## End(Not run)
## Not run: lookup("example.com") ## End(Not run)
Lookup for admin information
lookupAdmin(domain)
lookupAdmin(domain)
domain |
domain name to lookup for |
Return the admin information of the domain
## Not run: lookupAdmin("example.com") ## End(Not run)
## Not run: lookupAdmin("example.com") ## End(Not run)
Lookup for billing information
lookupBilling(domain)
lookupBilling(domain)
domain |
domain name to lookup for |
Return the billing information of the domain
## Not run: lookupBilling("example.com") ## End(Not run)
## Not run: lookupBilling("example.com") ## End(Not run)
Lookup for nameservers information
lookupNameservers(domain)
lookupNameservers(domain)
domain |
domain name to lookup for |
Return the nameservers information of the domain
## Not run: lookupNameservers("example.com") ## End(Not run)
## Not run: lookupNameservers("example.com") ## End(Not run)
Lookup for registrant information
lookupRegistrant(domain)
lookupRegistrant(domain)
domain |
domain name to lookup for |
Return the registrant information of the domain
## Not run: lookupRegistrant("example.com") ## End(Not run)
## Not run: lookupRegistrant("example.com") ## End(Not run)
Lookup for registrar information
lookupRegistrar(domain)
lookupRegistrar(domain)
domain |
domain name to lookup for |
Return the registrar information of the domain
## Not run: lookupRegistrar("example.com") ## End(Not run)
## Not run: lookupRegistrar("example.com") ## End(Not run)
Lookup for tech information
lookupTech(domain)
lookupTech(domain)
domain |
domain name to lookup for |
Return the tech information of the domain
## Not run: lookupTech("example.com") ## End(Not run)
## Not run: lookupTech("example.com") ## End(Not run)
Lookup for whois server information
lookupWhoisServer(domain)
lookupWhoisServer(domain)
domain |
domain name to lookup for |
Return the whois server information of the domain
## Not run: lookupWhoisServer("example.com") ## End(Not run)
## Not run: lookupWhoisServer("example.com") ## End(Not run)
Set IP2Location.io API key for lookup. Free API key can be obtained from <https://www.ip2location.io/sign-up?ref=1/>
set_api_key(api_key)
set_api_key(api_key)
api_key |
IP2Location.io API key |
No return value, called for side effects.
## Not run: set_api_key("YOUR_API_KEY") ## End(Not run)
## Not run: set_api_key("YOUR_API_KEY") ## End(Not run)