whois
Creates, updates, deletes, gets or lists a whois resource.
Overview
| Name | whois |
| Type | Resource |
| Id | cloudflare.intel.whois |
Fields
The following fields are returned by SELECT queries:
- list
Get WHOIS Record response.
| Name | Datatype | Description |
|---|---|---|
id | string | (example: 1542998887_DOMAIN_COM-VRSN) |
administrative_id | string | |
billing_id | string | |
registrant_id | string | |
registrar_id | string | |
technical_id | string | |
administrative_name | string | |
billing_name | string | |
registrant_name | string | |
registrar_name | string | |
technical_name | string | |
administrative_city | string | |
administrative_country | string | |
administrative_email | string | |
administrative_fax | string | |
administrative_fax_ext | string | |
administrative_org | string | |
administrative_phone | string | |
administrative_phone_ext | string | |
administrative_postal_code | string | |
administrative_province | string | |
administrative_referral_url | string | |
administrative_street | string | |
billing_city | string | |
billing_country | string | |
billing_email | string | |
billing_fax | string | |
billing_fax_ext | string | |
billing_org | string | |
billing_phone | string | |
billing_phone_ext | string | |
billing_postal_code | string | |
billing_province | string | |
billing_referral_url | string | |
billing_street | string | |
created_date | string (date-time) | (example: 2009-02-17T22:07:54.000Z) |
created_date_raw | string | (example: 2009-02-17T22:07:54Z) |
dnssec | boolean | |
domain | string | (example: cloudflare.com) |
expiration_date | string (date-time) | (example: 2033-02-17T22:07:54.000Z) |
expiration_date_raw | string | (example: 2033-02-17T22:07:54Z) |
extension | string | (example: com) |
found | boolean | |
nameservers | array | |
punycode | string | (example: cloudflare.com) |
registrant | string | |
registrant_city | string | |
registrant_country | string | |
registrant_email | string | |
registrant_fax | string | |
registrant_fax_ext | string | |
registrant_org | string | |
registrant_phone | string | |
registrant_phone_ext | string | |
registrant_postal_code | string | |
registrant_province | string | |
registrant_referral_url | string | |
registrant_street | string | |
registrar | string | (example: Cloudflare, Inc.) |
registrar_city | string | |
registrar_country | string | |
registrar_email | string | |
registrar_fax | string | |
registrar_fax_ext | string | |
registrar_org | string | |
registrar_phone | string | |
registrar_phone_ext | string | |
registrar_postal_code | string | |
registrar_province | string | |
registrar_referral_url | string | |
registrar_street | string | |
status | array | |
technical_city | string | |
technical_country | string | |
technical_email | string | |
technical_fax | string | |
technical_fax_ext | string | |
technical_org | string | |
technical_phone | string | |
technical_phone_ext | string | |
technical_postal_code | string | |
technical_province | string | |
technical_referral_url | string | |
technical_street | string | |
updated_date | string (date-time) | (example: 2024-01-09T16:45:28.000Z) |
updated_date_raw | string | (example: 2024-01-09T16:45:28Z) |
whois_server | string | (example: whois.cloudflare.com) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | domain | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
domain | string |
SELECT examples
- list
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 }}'
;