v1
latestOpenAPI 3.1.02026-07-2617125852.3 KBDFYEmailAccountOrder
Check domains availability
This endpoint will check the availability of the provided domains.. It will return a list of domains with their availability status.
. The only supported extensions (tlds) are: .com, .org.
. Domains containing trademarks of well-known companies are restricted and cannot be ordered.
. Please do not abuse this endpoint and do not use it for anything other than checking availability before ordering a domain.. This request has a rate limit of 30 request per minute, or 900 requests per hour.
Requires one of the following scopes: dfy_email_account_orders:create, dfy_email_account_orders:all, all:create, all:all
post/api/v2/dfy-email-account-orders/domains/check
Request body
Example request
{
"domains": [
"example.com"
]
}Response
Default Response
Example response
{
"results": [
{
"domain": "example.com",
"available": true,
"unavailable_reason": "restricted",
"restricted_keyword": "equifax"
}
]
}