Loading
Loading
https://api.apifreaks.com/v1.0/domain/availability
$ pip install requestsimport requests
import json
url = "https://api.apifreaks.com/v1.0/domain/availability"
payload = json.dumps({
"domainNames": [
"techguruss.com",
"bannu.in"
]
})
headers = {
'Content-Type': 'application/json',
'X-apiKey': ''
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Click Test it to start the request and see the response here!
| Field | Type | Requirement | Description |
|---|---|---|---|
| bulk_domain_available_response | Array | Mandatory | List of domain availability objects. |
Each individual domain availability object in the bulk_domain_available_response 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 |
| status | Boolean | Mandatory | Determines whether the request was successfully processed or not for that specific entry. |