Check single domain using GET method
GET /check/single?domain=example.com
Example with CURL
curl "http://domain-api.com/check/single?domain=example.com"
Check single domain using POST method
POST /check/single Content-Type: application/x-www-form-urlencoded domain=example.com
Example with CURL
curl -X POST "http://domain-api.com/check/single" -d "domain=example.com"
Check multiple domains (max 5) using GET method
GET /check/multiple?domain1=example.com&domain2=example.com&domain3=example.com&domain4=example.com&domain5=example.com
Example with CURL
curl "https://domain-api.com/check/multiple?domain1=example.com&domain2=example.com&domain3=example.com&domain4=example.com&domain5=example.com"
Check multiple domains (max 5) using POST method
POST /check/multiple Content-Type: application/x-www-form-urlencoded domain1=example1.com&domain2=example2.com
Example with CURL
curl -X POST "http://domain-api.com/check/multiple" -d "domain1=example.com" -d "domain2=example.com" -d "domain3=example.com" -d "domain4=example.com" -d "domain5=example.com"