Get domain renewal pricing
Run in Apidog
This endpoint allows you to retrieve the renewal price for domain names associated with your users. It provides pricing details for extending the registration period of a domain, helping you manage renewals efficiently.
Request Add parameter in header cmr-x-api-key
Example: cmr-x-api-key: ********************
or
Body Params application/json Required
{
"userId" : "8J7HM04FRXUT4VK86128K6D25APS" ,
"domains" : [
"hefty-minion.net" ,
"sparkling-disk.info" ,
"favorite-hydrolyse.name"
]
} Request Code Samples
curl --location --request POST 'https://customers.coldmailreseller.com/api/v1/integration/domains/renewal-price' \
--header 'cmr-x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "8J7HM04FRXUT4VK86128K6D25APS",
"domains": [
"hefty-minion.net",
"sparkling-disk.info",
"favorite-hydrolyse.name"
]
}' Responses application/json Generate Code
{
"status" : 200 ,
"message" : "Domain renewal prices fetched successfully" ,
"data" : [
{
"domainName" : "acme.com" ,
"domainId" : "5J7HM04FRXMT7VK86128K6D25ASP" ,
"years" : 1 ,
"renewalPrice" : "14.50" ,
"expireOn" : "2026-11-30T00:00:00.000Z" ,
"autoRenew" : false
}
]
}
Modified at 2026-04-03 08:40:34