Skip to main content
POST
/
api
/
v2
/
dfy-email-account-orders
/
domains
/
check
Check domains availability
curl --request POST \
  --url https://api.instantly.ai/api/v2/dfy-email-account-orders/domains/check \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domains": [
    "example.com"
  ]
}
'
{
  "results": [
    {
      "domain": "example.com",
      "available": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
domains
string[]
required

List of domains to check

Maximum array length: 50

Response

Default Response

results
object[]

List of domains with their availability status