Skip to main content

whois

Creates, updates, deletes, gets or lists a whois resource.

Overview

Namewhois
TypeResource
Idcloudflare.intel.whois

Fields

The following fields are returned by SELECT queries:

Get WHOIS Record response.

NameDatatypeDescription
idstring (example: 1542998887_DOMAIN_COM-VRSN)
administrative_idstring
billing_idstring
registrant_idstring
registrar_idstring
technical_idstring
administrative_namestring
billing_namestring
registrant_namestring
registrar_namestring
technical_namestring
administrative_citystring
administrative_countrystring
administrative_emailstring
administrative_faxstring
administrative_fax_extstring
administrative_orgstring
administrative_phonestring
administrative_phone_extstring
administrative_postal_codestring
administrative_provincestring
administrative_referral_urlstring
administrative_streetstring
billing_citystring
billing_countrystring
billing_emailstring
billing_faxstring
billing_fax_extstring
billing_orgstring
billing_phonestring
billing_phone_extstring
billing_postal_codestring
billing_provincestring
billing_referral_urlstring
billing_streetstring
created_datestring (date-time) (example: 2009-02-17T22:07:54.000Z)
created_date_rawstring (example: 2009-02-17T22:07:54Z)
dnssecboolean
domainstring (example: cloudflare.com)
expiration_datestring (date-time) (example: 2033-02-17T22:07:54.000Z)
expiration_date_rawstring (example: 2033-02-17T22:07:54Z)
extensionstring (example: com)
foundboolean
nameserversarray
punycodestring (example: cloudflare.com)
registrantstring
registrant_citystring
registrant_countrystring
registrant_emailstring
registrant_faxstring
registrant_fax_extstring
registrant_orgstring
registrant_phonestring
registrant_phone_extstring
registrant_postal_codestring
registrant_provincestring
registrant_referral_urlstring
registrant_streetstring
registrarstring (example: Cloudflare, Inc.)
registrar_citystring
registrar_countrystring
registrar_emailstring
registrar_faxstring
registrar_fax_extstring
registrar_orgstring
registrar_phonestring
registrar_phone_extstring
registrar_postal_codestring
registrar_provincestring
registrar_referral_urlstring
registrar_streetstring
statusarray
technical_citystring
technical_countrystring
technical_emailstring
technical_faxstring
technical_fax_extstring
technical_orgstring
technical_phonestring
technical_phone_extstring
technical_postal_codestring
technical_provincestring
technical_referral_urlstring
technical_streetstring
updated_datestring (date-time) (example: 2024-01-09T16:45:28.000Z)
updated_date_rawstring (example: 2024-01-09T16:45:28Z)
whois_serverstring (example: whois.cloudflare.com)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_iddomainRetrieves WHOIS registration data for a domain, including registrant and nameserver information.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
domainstring

SELECT examples

Retrieves WHOIS registration data for a domain, including registrant and nameserver information.

SELECT
id,
administrative_id,
billing_id,
registrant_id,
registrar_id,
technical_id,
administrative_name,
billing_name,
registrant_name,
registrar_name,
technical_name,
administrative_city,
administrative_country,
administrative_email,
administrative_fax,
administrative_fax_ext,
administrative_org,
administrative_phone,
administrative_phone_ext,
administrative_postal_code,
administrative_province,
administrative_referral_url,
administrative_street,
billing_city,
billing_country,
billing_email,
billing_fax,
billing_fax_ext,
billing_org,
billing_phone,
billing_phone_ext,
billing_postal_code,
billing_province,
billing_referral_url,
billing_street,
created_date,
created_date_raw,
dnssec,
domain,
expiration_date,
expiration_date_raw,
extension,
found,
nameservers,
punycode,
registrant,
registrant_city,
registrant_country,
registrant_email,
registrant_fax,
registrant_fax_ext,
registrant_org,
registrant_phone,
registrant_phone_ext,
registrant_postal_code,
registrant_province,
registrant_referral_url,
registrant_street,
registrar,
registrar_city,
registrar_country,
registrar_email,
registrar_fax,
registrar_fax_ext,
registrar_org,
registrar_phone,
registrar_phone_ext,
registrar_postal_code,
registrar_province,
registrar_referral_url,
registrar_street,
status,
technical_city,
technical_country,
technical_email,
technical_fax,
technical_fax_ext,
technical_org,
technical_phone,
technical_phone_ext,
technical_postal_code,
technical_province,
technical_referral_url,
technical_street,
updated_date,
updated_date_raw,
whois_server
FROM cloudflare.intel.whois
WHERE account_id = '{{ account_id }}' -- required
AND domain = '{{ domain }}'
;