domainName is the name without any extension — for example, acmecorp, not acmecorp.com. Pass an array of TLDs to check simultaneously.comnetorginiobizliveco — Available for a limited timeframeNote: The domainPricereturned in the response includes the partner margin configured in the dashboard.
data.restrictedDomains.curl --location 'https://customers.coldmailreseller.com/api/v1/integration/domains/available' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"domainName": "acmecorp",
"tlds": [
"com",
"io",
"net"
],
"years": 1
}'{
"status": 200,
"message": "Domains fetched successfully",
"data": {
"availableDomains": [
{
"status": "AVAILABLE",
"domainName": "acmecorp.com",
"domainPrice": "12.99",
"renewPrice": "14.99"
}
],
"restrictedDomains": []
}
}