POST /domains/available, pass the full domain with TLD (e.g. acmecorp.com). Returns a single availability record with pricing. If the domain contains a restricted phrase, returns a 200 with data.domainName and a note in the message.curl --location 'https://customers.coldmailreseller.com/api/v1/integration/domains/available-single' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"domainName": "acmecorp.com",
"years": 1
}'{
"status": 200,
"message": "Domain availability status",
"data": {
"status": "AVAILABLE",
"domainName": "acmecorp.com",
"domainPrice": "12.99",
"renewPrice": "14.99"
}
}