Loading
Loading
https://api.apifreaks.com/v1.0/domain/availability/suggestions
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/domain/availability/suggestions"
payload = {}
headers = {
'X-apiKey': ''
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
| Field | Type | Requirement | Description |
|---|---|---|---|
| domain_available_response | Array | Mandatory | List of domain availability objects. |
Each individual domain availability object in both API responses contains the following fields:
| 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 |