Check if a domain name is available for purchase. You can check multiple domains at once.
Python
from dub import Dub with Dub( token="DUB_API_KEY", ) as d_client: res = d_client.domains.check_status(request={ "domains": "<value>", }) # Handle response print(res)
[ { "domain": "<string>", "available": true, "price": "<string>", "premium": true } ]
Default authentication mechanism
The domains to search. We only support .link domains for now.
The domain status was retrieved.
The domain name.
Whether the domain is available.
The price description.
Whether the domain is a premium domain.
Was this page helpful?