Loading
Loading
https://api.apifreaks.com/v1.0/domain/availability
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/domain/availability"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
Click Test it to start the request and see the response here!
| Field | Type | Requirement | Description |
|---|---|---|---|
| domain | String | Mandatory | Name of the queried domain |
| domainAvailability | Boolean | Mandatory | True if available, false if not available |
| message | String | Optional | Extra details if the domain is not registered |