# Renew Domain Renews an existing domain for an additional registration period. Include the domain name and renewal term. If the domain has non-standard pricing (e.g. premium), the purchasePrice must be passed. This is typically used to extend ownership before a domain’s expiration. Endpoint: POST /core/v1/domains/{domainName}:renew Version: 1.3.1 Security: BasicAuth ## Path parameters: - `domainName` (string, required) DomainName is the domain to renew. ## Request fields (application/json): - `purchasePrice` (number) PurchasePrice is the amount in USD to pay for the domain renewal at the minimum renewal period (typically 1 year). If VAT tax applies, it will also be added automatically. PurchasePrice is required if this is a premium domain. Example: 10.99 - `years` (integer) Years specifies how many years to renew the domain for. Years defaults to the minimum time period (typically 1 year) if not passed and cannot be more than 10. Some TLDs default to longer periods (e.g. .AI requires a 2 year renewal). Example: 3 ## Response 200 fields (application/json): - `domain` (object) Domain contains all relevant data for a domain. - `domain.domainName` (string) The punycode-encoded value of the domain name. Example: "example.com" - `domain.createDate` (string) The date and time when the domain was created at the registry. Example: "2023-01-15T14:30:00Z" - `domain.expireDate` (string) The date and time when the domain will expire. Example: "2025-01-15T14:30:00Z" - `domain.autorenewEnabled` (boolean) Indicates whether the domain is set to renew automatically before expiration. Example: true - `domain.locked` (boolean) Indicates if the domain is locked, preventing transfers to another registrar. Example: true - `domain.privacyEnabled` (boolean) Indicates if Whois Privacy is enabled for this domain. Example: true - `domain.contacts` (object) Contacts stores the contact information for the roles related to domains. - `domain.contacts.admin` (object) Contact contains all relevant contact data for a domain registrant. - `domain.contacts.admin.firstName` (string, required) First name of the contact. Example: "John" - `domain.contacts.admin.lastName` (string, required) Last name of the contact. Example: "Doe" - `domain.contacts.admin.companyName` (string,null) Company name of the contact. Leave blank if the contact is an individual, as some registries may assume it is a corporate entity otherwise. Example: "Example Inc." - `domain.contacts.admin.address1` (string, required) The first line of the contact's address. Example: "123 Main Street" - `domain.contacts.admin.address2` (string,null) The second line of the contact's address (optional). Example: "Suite 400" - `domain.contacts.admin.city` (string, required) City of the contact's address. Example: "New York" - `domain.contacts.admin.state` (string, required) State or Province of the contact's address. Example: "NY" - `domain.contacts.admin.zip` (string, required) ZIP or Postal Code of the contact's address. Example: "10001" - `domain.contacts.admin.country` (string, required) Country code for the contact's address. Must be an ISO 3166-1 alpha-2 country code. Example: "US" - `domain.contacts.admin.email` (string, required) Email address of the contact. Must be a valid email format. The validation is performed against the syntax in [RFC 822](https://datatracker.ietf.org/doc/html/rfc822) Example: "john.doe@example.com" - `domain.contacts.admin.phone` (string, required) Phone number of the contact. Should follow the E.164 international format: "+[country code][number]". Example: "+15551234567" - `domain.contacts.admin.fax` (string,null) Fax number of the contact. Should follow the E.164 international format: "+[country code][number]". Example: "+15557654321" - `domain.contacts.billing` (object) Contact contains all relevant contact data for a domain registrant. - `domain.contacts.registrant` (object) Contact contains all relevant contact data for a domain registrant. - `domain.contacts.registrant.companyName` (string,null) Company name of the contact. Leave blank if the contact is an individual. Please be advised that ICANN policy links the "Company Name" field (Organization) in your domain's contact details to its legal ownership. If this field contains information, the listed organization is considered the legal "Registered Name Holder" (domain owner). Example: "Example Inc." - `domain.contacts.tech` (object) Contact contains all relevant contact data for a domain registrant. - `domain.nameservers` (array) The list of nameservers assigned to this domain. If unspecified, it defaults to the account's default nameservers. Example: ["ns1.example.com","ns2.example.com"] - `domain.renewalPrice` (number) The cost to renew the domain. This may be required for the RenewDomain operation. Example: 12.99 - `order` (integer) - `totalPaid` (number) TotalPaid is the total amount paid, including VAT. Example: 5.95 ## Response 404 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "Not Found" - `details` (string,null) Additional context or information about the error Example: "The requested domain does not exist." ## Response 415 fields (application/json): - `message` (string, required) A human-readable message providing more details about the error Example: "The 'Content-Type' header must be 'application/json' for this request." ## Response 429 fields (application/json): - `message` (string) A human-readable message providing more details about the error Example: "Rate Limit Exceeded"