Skip to main content
POST
/
registrar
/
v1
/
domains
/
check-bulk
Check multiple domains availability
curl --request POST \
  --url https://atom.com/api/registrar/v1/domains/check-bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domains": [
    "example.com",
    "test.net",
    "sample.org"
  ]
}
'
{
  "success": true,
  "data": {
    "total_requested": 3,
    "successfully_checked": 2,
    "errors": 1,
    "results": [
      {
        "domain": "example.com",
        "availability": 1,
        "status": "available",
        "error": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Registrar API Bearer token. Obtain from dashboard at /dashboard/seller/api-access after requesting Registrar API access.

Body

application/json
domains
string[]
required
Required array length: 1 - 50 elements
Example:
["example.com", "test.net", "sample.org"]

Response

Successful operation

success
boolean
Example:

true

data
object