openapi: 3.2.0
info:
title: Apifreaks Api Hub For Developers WHOIS APIs API
version: 1.0.0
contact:
name: APIFreaks Support
url: https://apifreaks.com/contact
email: support@apifreaks.com
description: 'Operations tagged WHOIS APIs across 6 of this provider''s published API definitions: apifreaks-api-hub-for-developers-asn-lookup-openapi.json, apifreaks-api-hub-for-developers-bulk-whois-lookup-openapi.json, apifreaks-api-hub-for-developers-domain-whois-history-lookup-openapi.json, apifreaks-api-hub-for-developers-reverse-whois-openapi.json, apifreaks-api-hub-for-developers-whois-domain-lookup-openapi.json, apifreaks-api-hub-for-developers-whois-ip-lookup-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.apifreaks.com/v1.0
description: ASN Lookup API Server
- url: https://api.apifreaks.com/v2.0
description: Bulk Domain WHOIS Lookup API Server
security:
- ApiKeyAuthHeader: []
- ApiKeyAuthQuery: []
tags:
- name: WHOIS APIs
paths:
/asn/whois/live:
servers:
- url: https://api.apifreaks.com/v1.0
description: ASN Lookup API Server
get:
tags:
- WHOIS APIs
summary: Retrieve WHOIS registration data, CIDR block inventory, and BGP peer relationships for an Autonomous System Number
description: Returns the WHOIS record for the specified ASN, including organization details, IPv4/IPv6 route objects, upstream/downstream/peer relationships, and both parsed and raw WHOIS text. Accepts the ASN with or without the 'AS' prefix.
operationId: asnLookup
parameters:
- name: format
in: query
required: false
description: Format of the response.
schema:
type: string
enum:
- json
- xml
default: json
- name: asn
in: query
required: true
description: Autonomous System Number to retrieve WHOIS data for, with or without the 'AS' prefix (e.g. 15169 or AS15169).
schema:
type: string
responses:
'200':
description: Successful ASN WHOIS response
content:
application/json:
schema:
$ref: '#/components/schemas/ASNLookupResponse'
examples:
typicalSuccess:
summary: Typical successful response
value:
asNumber: '15'
asName: NET-DYNAMICS-EXP
orgName: DYNAMICS
description: ''
orgHandle: dynami-109
country: US
domain: nisc.sri.com
website: ''
allocationStatus: ''
numOfIPv4Routes: '0'
numOfIPv6Routes: '0'
whoisHost: ARIN
dateAllocated: ''
type: ISP
routeObjects: []
whoisResponse: "\n#\n# ARIN WHOIS data and services are subject to the Terms of Use\n# available at: https://www.arin.net/resources/registry/whois/tou/\n#\n# If you see inaccuracies in the results, please report at\n# https://www.arin.net/resources/registry/whois/inaccuracy_reporting/\n#\n# Copyright 1997-2026, American Registry for Internet Numbers, Ltd.\n#\n\n\nASNumber: 15\nASName: NET-DYNAMICS-EXP\nASHandle: AS15\nRegDate: \nUpdated: 1991-06-27\nRef: https://rdap.arin.net/registry/autnum/15\n\n\nOrgName: DYNAMICS\nOrgId: DYNAMI-109\nCity: \nStateProv: \nPostalCode: \nCountry: US\nRegDate: \nUpdated: 2012-10-10\nRef: https://rdap.arin.net/registry/entity/DYNAMI-109\n\n\nOrgTechHandle: ZSU-ARIN\nOrgTechName: Su, Zaw-Sing \nOrgTechPhone: +1-415-859-4576 \nOrgTechEmail: zsu@nisc.sri.com\nOrgTechRef: https://rdap.arin.net/registry/entity/ZSU-ARIN\n\nOrgAbuseHandle: ZSU-ARIN\nOrgAbuseName: Su, Zaw-Sing \nOrgAbusePhone: +1-415-859-4576 \nOrgAbuseEmail: zsu@nisc.sri.com\nOrgAbuseRef: https://rdap.arin.net/registry/entity/ZSU-ARIN\n\nRTechHandle: ZSU-ARIN\nRTechName: Su, Zaw-Sing \nRTechPhone: +1-415-859-4576 \nRTechEmail: zsu@nisc.sri.com\nRTechRef: https://rdap.arin.net/registry/entity/ZSU-ARIN\n\n\n#\n# ARIN WHOIS data and services are subject to the Terms of Use\n# available at: https://www.arin.net/resources/registry/whois/tou/\n#\n# If you see inaccuracies in the results, please report at\n# https://www.arin.net/resources/registry/whois/inaccuracy_reporting/\n#\n# Copyright 1997-2026, American Registry for Internet Numbers, Ltd.\n#\n"
downstreams: []
parsedWhoisResponse:
status: true
whois_server: whois.arin.net
aut_nums:
- aut_num: '15'
as_handle: AS15
as_name: NET-DYNAMICS-EXP
tech_contacts:
- ZSU-ARIN
- ZSU-ARIN
abuse_contacts:
- ZSU-ARIN
date_updated: '1991-06-27'
source: https://rdap.arin.net/registry/autnum/15
organization:
handle: DYNAMI-109
name: DYNAMICS
address:
- US
country:
- US
date_updated: '2012-10-10'
source: https://rdap.arin.net/registry/entity/DYNAMI-109
addressCountry: US
technical_contacts:
- handle: ZSU-ARIN
name: Su, Zaw-Sing
email:
- zsu@nisc.sri.com
phone:
- +1-415-859-4576
source: https://rdap.arin.net/registry/entity/ZSU-ARIN
abuse_contacts:
- handle: ZSU-ARIN
name: Su, Zaw-Sing
email:
- zsu@nisc.sri.com
phone:
- +1-415-859-4576
source: https://rdap.arin.net/registry/entity/ZSU-ARIN
upstreams: []
peers: []
contacts:
emailContacts:
- zsu@nisc.sri.com
abuseContacts: []
legacyRoutes: []
'400':
description: Bad Request — Invalid asn parameter
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
invalidAsn:
summary: Non-numeric asn value
value:
timestamp: '2026-07-23T07:47:06.640Z'
status: 400
error: Input parameter is not valid
message: Request-param 'asn' (ABC123) is not valid
path: /v2.0/asn-whois
'404':
description: Not Found — ASN could not be found
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
examples:
asnNotFound:
summary: ASN not allocated or unrecognized
value:
timestamp: '2026-07-23T07:47:45.427Z'
status: 404
error: Data Not Found
message: ASN data for 999999999 could not be found.
path: /v2.0/asn-whois
/domain/whois/live:
servers:
- url: https://api.apifreaks.com/v2.0
description: Bulk Domain WHOIS Lookup API Server
post:
tags:
- WHOIS APIs
summary: Retrieve real-time WHOIS registration and ownership data for up to 100 domain names in a single request
description: Returns the current WHOIS record for each requested domain, in request order. Supports up to 100 domain names per request; a domain that fails to resolve yields an error item instead of failing the whole batch.
operationId: bulkWhoisLookup
parameters:
- name: format
in: query
required: false
description: Format of the response.
schema:
type: string
enum:
- json
- xml
default: json
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BulkWhoisLookupRequest'
examples:
typicalRequest:
summary: Typical bulk lookup request
value:
domainNames:
- microsoft.com
- example.xn--tckwe
responses:
'200':
description: WHOIS data retrieved successfully for every requested domain
content:
application/json:
schema:
$ref: '#/components/schemas/BulkWhoisLookupResponse'
examples:
typicalSuccess:
summary: All domains resolved
value:
bulk_whois_response:
- status: true
domain_name: example.xn--tckwe
query_time: '2026-07-23 09:28:42'
whois_server: https://tld-rdap.verisign.com/xn--tckwe/v1/
domain_registered: 'no'
- status: true
domain_name: microsoft.com
query_time: '2026-07-23 09:28:43'
whois_server: whois.verisign-grs.com
domain_registered: 'yes'
create_date: '1991-05-02'
update_date: '2026-01-29'
expiry_date: '2027-05-03'
domain_registrar:
iana_id: '292'
status: accredited
registrar_name: MarkMonitor, Inc
normalized_name: markmonitor
whois_server: whois.markmonitor.com
rdap_server: https://rdap.markmonitor.com/rdap/
website_url: http://www.markmonitor.com
email_address: abusecomplaints@markmonitor.com
phone_number: '+12086851750'
registrant_contact:
name: Domain Administrator
company: Microsoft Corporation
street: One Microsoft Way,
city: Redmond
state: WA
zip_code: '98052'
country_name: United States
country_code: US
email_address: admin@domains.microsoft
phone: '+14258828080'
fax: '+14259367329'
technical_contact:
name: MSN Hostmaster
country_name: United States
country_code: US
email_address: msnhst@microsoft.com
phone: '+14258828080'
name_servers:
- ns4-39.azure-dns.info
- ns3-39.azure-dns.org
- ns1-39.azure-dns.com
- ns2-39.azure-dns.net
domain_status:
- clientupdateprohibited
- clienttransferprohibited
- clientdeleteprohibited
- serverdeleteprohibited
- serverupdateprohibited
- servertransferprohibited
whois_raw_domain: "\nDomain Name: microsoft.com\nRegistry Domain ID: 2724960_DOMAIN_COM-VRSN\nRegistrar WHOIS Server: whois.markmonitor.com\nRegistrar URL: http://www.markmonitor.com\nUpdated Date: 2026-01-29T18:46:57+0000\nCreation Date: 1991-05-02T04:00:00+0000\nRegistrar Registration Expiration Date: 2027-05-03T00:00:00+0000\nRegistrar: MarkMonitor, Inc.\nRegistrar IANA ID: 292\nRegistrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report\nRegistrar Abuse Contact Phone: +1.2086851750\nDomain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)\nDomain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)\nDomain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)\nDomain Status: serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)\nDomain Status: serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)\nDomain Status: serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)\nRegistrant Name: Domain Administrator\nRegistrant Organization: Microsoft Corporation\nRegistrant Street: One Microsoft Way, \nRegistrant City: Redmond\nRegistrant State/Province: WA\nRegistrant Postal Code: 98052\nRegistrant Country: US\nRegistrant Phone: +1.4258828080\nRegistrant Phone Ext: \nRegistrant Fax: +1.4259367329\nRegistrant Fax Ext: \nRegistrant Email: admin@domains.microsoft\nTech Name: MSN Hostmaster\nTech Phone: +1.4258828080\nTech Email: msnhst@microsoft.com\nName Server: ns1-39.azure-dns.com\nName Server: ns3-39.azure-dns.org\nName Server: ns2-39.azure-dns.net\nName Server: ns4-39.azure-dns.info\nDNSSEC: unsigned\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2026-07-23T09:28:02+0000 <<<\n\nFor more information on WHOIS status codes, please visit:\n https://www.icann.org/resources/pages/epp-status-codes\n\nIf you wish to contact this domain’s Registrant or Technical\ncontact, and such email address is not visible above, you may do so via our web\nform, pursuant to ICANN’s Temporary Specification. To verify that you are not a\nrobot, please enter your email address to receive a link to a page that\nfacilitates email communication with the relevant contact(s).\n\nWeb-based WHOIS:\n https://domains.markmonitor.com/whois/contact/microsoft.com\n\nIf you have a legitimate interest in viewing the non-public WHOIS details, send\nyour request and the reasons for your request to whoisrequest@markmonitor.com\nand specify the domain name in the subject line. We will review that request and\nmay ask for supporting documentation and explanation.\n\nThe data in MarkMonitor’s WHOIS database is provided for information purposes,\nand to assist persons in obtaining information about or related to a domain\nname’s registration record. While MarkMonitor believes the data to be accurate,\nthe data is provided \"as is\" with no guarantee or warranties regarding its\naccuracy.\n\nBy submitting a WHOIS query, you agree that you will use this data only for\nlawful purposes and that, under no circumstances will you use this data to:\n (1) allow, enable, or otherwise support the transmission by email, telephone,\nor facsimile of mass, unsolicited, commercial advertising, or spam; or\n (2) enable high volume, automated, or electronic processes that send queries,\ndata, or email to MarkMonitor (or its systems) or the domain name contacts (or\nits systems).\n\nMarkMonitor reserves the right to modify these terms at any time.\n\nBy submitting this query, you agree to abide by this policy.\n\nMarkMonitor Domain Management(TM)\nProtecting companies and consumers in a digital world.\n\nVisit MarkMonitor at https://www.markmonitor.com\nContact us at +1.8007459229\nIn Europe, at +44.02032062220\n----"
registry_data:
domain_name: MICROSOFT.COM
query_time: '2026-07-23 09:28:42'
whois_server: whois.verisign-grs.com
domain_registered: 'yes'
create_date: '1991-05-02'
update_date: '2026-01-29'
expiry_date: '2027-05-03'
domain_registrar:
iana_id: '292'
registrar_name: MarkMonitor Inc
whois_server: whois.markmonitor.com
website_url: http://www.markmonitor.com
name_servers:
- ns4-39.azure-dns.info
- ns3-39.azure-dns.org
- ns1-39.azure-dns.com
- ns2-39.azure-dns.net
domain_status:
- clientupdateprohibited
- clientdeleteprohibited
- clienttransferprohibited
- serverdeleteprohibited
- serverupdateprohibited
- servertransferprohibited
whois_raw_registery: "\nDomain Name: MICROSOFT.COM\n Registry Domain ID: 2724960_DOMAIN_COM-VRSN\n Registrar WHOIS Server: whois.markmonitor.com\n Registrar URL: http://www.markmonitor.com\n Updated Date: 2026-01-29T18:46:57Z\n Creation Date: 1991-05-02T04:00:00Z\n Registry Expiry Date: 2027-05-03T04:00:00Z\n Registrar: MarkMonitor Inc.\n Registrar IANA ID: 292\n Registrar Abuse Contact Email: abusecomplaints@markmonitor.com\n Registrar Abuse Contact Phone: +1.2086851750\n Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited\n Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited\n Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited\n Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited\n Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited\n Domain Status: serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited\n Name Server: NS1-39.AZURE-DNS.COM\n Name Server: NS2-39.AZURE-DNS.NET\n Name Server: NS3-39.AZURE-DNS.ORG\n Name Server: NS4-39.AZURE-DNS.INFO\n DNSSEC: unsigned\n URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/\n>>> Last update of whois database: 2026-07-23T09:28:23Z <<<\n\nFor more information on Whois status codes, please visit https://icann.org/epp\n\nNOTICE: The expiration date displayed in this record is the date the\nregistrar's sponsorship of the domain name registration in the registry is\ncurrently set to expire. This date does not necessarily reflect the expiration\ndate of the domain name registrant's agreement with the sponsoring\nregistrar. Users may consult the sponsoring registrar's Whois database to\nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois\ndatabase through the use of electronic processes that are high-volume and\nautomated except as reasonably necessary to register domain names or\nmodify existing registrations; the Data in VeriSign Global Registry\nServices' (\"VeriSign\") Whois database is provided by VeriSign for\ninformation purposes only, and to assist persons in obtaining information\nabout or related to a domain name registration record. VeriSign does not\nguarantee its accuracy. By submitting a Whois query, you agree to abide\nby the following terms of use: You agree that you may use this Data only\nfor lawful purposes and that under no circumstances will you use this Data\nto: (1) allow, enable, or otherwise support the transmission of mass\nunsolicited, commercial advertising or solicitations via e-mail, telephone,\nor facsimile; or (2) enable high volume, automated, electronic processes\nthat apply to VeriSign (or its computer systems). The compilation,\nrepackaging, dissemination or other use of this Data is expressly\nprohibited without the prior written consent of VeriSign. You agree not to\nuse electronic processes that are automated and high-volume to access or\nquery the Whois database except as reasonably necessary to register\ndomain names or modify existing registrations. VeriSign reserves the right\nto restrict your access to the Whois database in its sole discretion to ensure\noperational stability. VeriSign may restrict or terminate your access to the\nWhois database for failure to abide by these terms of use. VeriSign\nreserves the right to modify these terms at any time.\n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars."
'206':
description: Partial Content — At least one domain in the batch returned an error; other domains in the same batch still resolved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/BulkWhoisLookupResponse'
examples:
partialFailure:
summary: One domain unsupported, one resolved
value:
bulk_whois_response:
- status: false
domain_name: zzzz.local
status_code: 403
error: NotSupportedDomainExtException
message: We are not providing the whois of this domain extension (local)
- status: true
domain_name: microsoft.com
query_time: '2026-07-23 09:28:55'
whois_server: whois.verisign-grs.com
domain_registered: 'yes'
create_date: '1991-05-02'
update_date: '2026-01-29'
expiry_date: '2027-05-03'
domain_registrar:
iana_id: '292'
status: accredited
registrar_name: MarkMonitor, Inc
normalized_name: markmonitor
whois_server: whois.markmonitor.com
rdap_server: https://rdap.markmonitor.com/rdap/
website_url: http://www.markmonitor.com
email_address: abusecomplaints@markmonitor.com
phone_number: '+12086851750'
registrant_contact:
name: Domain Administrator
company: Microsoft Corporation
street: One Microsoft Way,
city: Redmond
state: WA
zip_code: '98052'
country_name: United States
country_code: US
email_address: admin@domains.microsoft
phone: '+14258828080'
fax: '+14259367329'
technical_contact:
name: MSN Hostmaster
country_name: United States
country_code: US
email_address: msnhst@microsoft.com
phone: '+14258828080'
name_servers:
- ns4-39.azure-dns.info
- ns3-39.azure-dns.org
- ns1-39.azure-dns.com
- ns2-39.azure-dns.net
domain_status:
- clientupdateprohibited
- clienttransferprohibited
- clientdeleteprohibited
- serverdeleteprohibited
- serverupdateprohibited
- servertransferprohibited
whois_raw_domain: "\nDomain Name: microsoft.com\nRegistry Domain ID: 2724960_DOMAIN_COM-VRSN\nRegistrar WHOIS Server: whois.markmonitor.com\nRegistrar URL: http://www.markmonitor.com\nUpdated Date: 2026-01-29T18:46:57+0000\nCreation Date: 1991-05-02T04:00:00+0000\nRegistrar Registration Expiration Date: 2027-05-03T00:00:00+0000\nRegistrar: MarkMonitor, Inc.\nRegistrar IANA ID: 292\nRegistrar Abuse Contact: https://corp.markmonitor.com/domain/ui/abuse-report\nRegistrar Abuse Contact Phone: +1.2086851750\nDomain Status: clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)\nDomain Status: clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)\nDomain Status: clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)\nDomain Status: serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)\nDomain Status: serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)\nDomain Status: serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)\nRegistrant Name: Domain Administrator\nRegistrant Organization: Microsoft Corporation\nRegistrant Street: One Microsoft Way, \nRegistrant City: Redmond\nRegistrant State/Province: WA\nRegistrant Postal Code: 98052\nRegistrant Country: US\nRegistrant Phone: +1.4258828080\nRegistrant Phone Ext: \nRegistrant Fax: +1.4259367329\nRegistrant Fax Ext: \nRegistrant Email: admin@domains.microsoft\nTech Name: MSN Hostmaster\nTech Phone: +1.4258828080\nTech Email: msnhst@microsoft.com\nName Server: ns1-39.azure-dns.com\nName Server: ns3-39.azure-dns.org\nName Server: ns2-39.azure-dns.net\nName Server: ns4-39.azure-dns.info\nDNSSEC: unsigned\nURL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/\n>>> Last update of WHOIS database: 2026-07-23T09:28:02+0000 <<<\n\nFor more information on WHOIS status codes, please visit:\n https://www.icann.org/resources/pages/epp-status-codes\n\nIf you wish to contact this domain’s Registrant or Technical\ncontact, and such email address is not visible above, you may do so via our web\nform, pursuant to ICANN’s Temporary Specification. To verify that you are not a\nrobot, please enter your email address to receive a link to a page that\nfacilitates email communication with the relevant contact(s).\n\nWeb-based WHOIS:\n https://domains.markmonitor.com/whois/contact/microsoft.com\n\nIf you have a legitimate interest in viewing the non-public WHOIS details, send\nyour request and the reasons for your request to whoisrequest@markmonitor.com\nand specify the domain name in the subject line. We will review that request and\nmay ask for supporting documentation and explanation.\n\nThe data in MarkMonitor’s WHOIS database is provided for information purposes,\nand to assist persons in obtaining information about or related to a domain\nname’s registration record. While MarkMonitor believes the data to be accurate,\nthe data is provided \"as is\" with no guarantee or warranties regarding its\naccuracy.\n\nBy submitting a WHOIS query, you agree that you will use this data only for\nlawful purposes and that, under no circumstances will you use this data to:\n (1) allow, enable, or otherwise support the transmission by email, telephone,\nor facsimile of mass, unsolicited, commercial advertising, or spam; or\n (2) enable high volume, automated, or electronic processes that send queries,\ndata, or email to MarkMonitor (or its systems) or the domain name contacts (or\nits systems).\n\nMarkMonitor reserves the right to modify these terms at any time.\n\nBy submitting this query, you agree to abide by this policy.\n\nMarkMonitor Domain Management(TM)\nProtecting companies and consumers in a digital world.\n\nVisit MarkMonitor at https://www.markmonitor.com\nContact us at +1.8007459229\nIn Europe, at +44.02032062220\n----"
registry_data:
domain_name: MICROSOFT.COM
query_time: '2026-07-23 09:28:54'
whois_server: whois.verisign-grs.com
domain_registered: 'yes'
create_date: '1991-05-02'
update_date: '2026-01-29'
expiry_date: '2027-05-03'
domain_registrar:
iana_id: '292'
registrar_name: MarkMonitor Inc
whois_server: whois.markmonitor.com
website_url: http://www.markmonitor.com
name_servers:
- ns4-39.azure-dns.info
- ns3-39.azure-dns.org
- ns1-39.azure-dns.com
- ns2-39.azure-dns.net
domain_status:
- clientupdateprohibited
- clientdeleteprohibited
- clienttransferprohibited
- serverdeleteprohibited
- serverupdateprohibited
- servertransferprohibited
whois_raw_registery: "\nDomain Name: MICROSOFT.COM\n Registry Domain ID: 2724960_DOMAIN_COM-VRSN\n Registrar WHOIS Server: whois.markmonitor.com\n Registrar URL: http://www.markmonitor.com\n Updated Date: 2026-01-29T18:46:57Z\n Creation Date: 1991-05-02T04:00:00Z\n Registry Expiry Date: 2027-05-03T04:00:00Z\n Registrar: MarkMonitor Inc.\n Registrar IANA ID: 292\n Registrar Abuse Contact Email: abusecomplaints@markmonitor.com\n Registrar Abuse Contact Phone: +1.2086851750\n Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited\n Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited\n Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited\n Domain Status: serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited\n Domain Status: serverTransferProhibited https://icann.org/epp#serverTransferProhibited\n Domain Status: serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited\n Name Server: NS1-39.AZURE-DNS.COM\n Name Server: NS2-39.AZURE-DNS.NET\n Name Server: NS3-39.AZURE-DNS.ORG\n Name Server: NS4-39.AZURE-DNS.INFO\n DNSSEC: unsigned\n URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/\n>>> Last update of whois database: 2026-07-23T09:28:38Z <<<\n\nFor more information on Whois status codes, please visit https://icann.org/epp\n\nNOTICE: The expiration date displayed in this record is the date the\nregistrar's sponsorship of the domain name registration in the registry is\ncurrently set to expire. This date does not necessarily reflect the expiration\ndate of the domain name registrant's agreement with the sponsoring\nregistrar. Users may consult the sponsoring registrar's Whois database to\nview the registrar's reported date of expiration for this registration.\n\nTERMS OF USE: You are not authorized to access or query our Whois\ndatabase through the use of electronic processes that are high-volume and\nautomated except as reasonably necessary to register domain names or\nmodify existing registrations; the Data in VeriSign Global Registry\nServices' (\"VeriSign\") Whois database is provided by VeriSign for\ninformation purposes only, and to assist persons in obtaining information\nabout or related to a domain name registration record. VeriSign does not\nguarantee its accuracy. By submitting a Whois query, you agree to abide\nby the following terms of use: You agree that you may use this Data only\nfor lawful purposes and that under no circumstances will you use this Data\nto: (1) allow, enable, or otherwise support the transmission of mass\nunsolicited, commercial advertising or solicitations via e-mail, telephone,\nor facsimile; or (2) enable high volume, automated, electronic processes\nthat apply to VeriSign (or its computer systems). The compilation,\nrepackaging, dissemination or other use of this Data is expressly\nprohibited without the prior written consent of VeriSign. You agree not to\nuse electronic processes that are automated and high-volume to access or\nquery the Whois database except as reasonably necessary to register\ndomain names or modify existing registrations. VeriSign reserves the right\nto restrict your access to the Whois database in its sole discretion to ensure\noperational stability. VeriSign may restrict or terminate your access to the\nWhois database for failure to abide by these terms of use. VeriSign\nreserves the right to modify these terms at any time.\n\nThe Registry database contains ONLY .COM, .NET, .EDU domains and\nRegistrars."
'400':
description: Bad Requ
# --- truncated at 32 KB (137 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/apifreaks-api-hub-for-developers/refs/heads/main/openapi/apifreaks-api-hub-for-developers-whois-apis-api-openapi.yml