v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
DFYEmailAccountOrder

Generate similar available domains

This endpoint will generate a list of similar AND available domains based on the provided domain.. It will return a maximum number of 67 suggestions per extension (tld) requested.. All the returned domains will be available for order.. Domains containing trademarks of well-known companies are restricted and cannot be ordered.

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/similar

Request body

domainstring required

The domain to base the suggestions on

tldsstring[]

The extensions (tlds) to use for generating similar domains. By default, we will use com and org.

Example request

{
  "domain": "example.com",
  "tlds": [
    "com"
  ]
}

Response

Default Response

domainsstring[]

List of similar and available domains

Example response

{
  "domains": [
    "acme.com"
  ]
}