1import requests
2
3url = "https://api.whoisfreaks.com/v1.0/domain/availability?apiKey=API_KEY&domain=whoisfreaks.com"
4response = requests.get(url)
5print(response.text)1import requests
2
3url = "https://api.whoisfreaks.com/v1.0/domain/availability?apiKey=API_KEY"
4headers = {
5 "Content-Type": "application/json",
6}
7payload = '{"domainNames":["jfreaks.pk","whoisfreaks.com"]}'
8response = requests.post(url, data=payload, headers=headers)
9print(response.text)The WhoisFreaks Python SDK allows developers to check the availability of domain names, making it easier to identify domains that are open for registration. This functionality supports domain acquisition, brand protection, and strategic management of digital assets by uncovering new domain opportunities.
This package is for performing any type of Domain Availability Lookup.
To utilize the WhoisFreaks Python SDK for checking the availability of domain names, follow these steps:
First, ensure that Python and the WhoisFreaks Python SDK are installed on your system. To install the necessary modules, please visit the Installation Steps page.
In all lookups, replace "your_api_key" with your actual API key.
domain_availability_lookup performs a domain availability check using the WhoisFreaks API. It checks whether a specific domain name is available for registration.
domain_availability_lookup(api_key='your_api_key', domain='google.com', sug=True)Parameters:
Returns:
For a comprehensive details of response fields, please visit the Domain Availability Lookup Documentation.
Example Usage:
from whoisfreaks import WhoisfreaksApi
from whoisfreaks.core.api_error import ApiError
client = WhoisfreaksApi()
try:
response = client.domain_availability_lookup(api_key='your_api_key', domain='google.com', sug=True)
response = {k: v for k, v in response.dict().items() if v is not None} # Filtering the Null values
print(response)
except ApiError as e:
print(e.body)Replace "whois.com" with the domain you wish to check.
Offers live, reverse, historical, IP, ASN, and bulk domain WHOIS lookups.
Provides live, reverse, historical, and bulk DNS lookup services.
Checks domain availability across TLDs and suggests alternatives.
Performs SSL lookup and shows certificate chain from start to present.

Use this powerful Python-based SDK to easily integrate, interact with, and manage data from the WhoisFreaks API seamlessly.
whoisfreaks.docs.buildwithfern.com