API de Dynadot
Comenzando con nuestra API RESTful
La API de Dynadot está diseñada para una integración fluida con tus sistemas. Nuestra API cuenta con URLs orientadas a recursos predecibles, soporta cuerpos de solicitud codificados en JSON, devuelve respuestas codificadas en JSON y XML, y se adhiere a los métodos HTTP estándar, autenticación y códigos de respuesta.Puedes utilizar la API de Dynadot tanto en modo de prueba como en modo en vivo. El modo se determina por la clave de API utilizada para autenticar tus solicitudes. El modo de prueba te permite simular y validar tu integración de API sin afectar los datos o transacciones en vivo.La API de Dynadot se centra principalmente en la gestión de dominios, el procesamiento de pedidos y servicios relacionados. Puedes realizar acciones como registrar, transferir y renovar dominios, gestionar configuraciones de DNS y ver o actualizar los pedidos de tu cuenta.Por favor, tenga en cuenta: Las creaciones, actualizaciones y eliminaciones en masa no son compatibles, y cada uno de esos tipos de solicitud está limitado a un objeto o acción.
Generando sus claves APIAntes de comenzar a realizar cualquier solicitud a la API, es esencial generar tu Clave API y tu Secreto API.Estas claves son necesarias para la autenticación y para garantizar la seguridad de tus acciones al interactuar con nuestra API.Puedes generar tanto la Clave API como el Secreto API a través de la sección API en la configuración de tu cuenta.1. Inicia sesión en tu cuenta en Dynadot.2. Navega a Herramientas > API.3. Genera tu Clave API y Secreto API desde esta página.


Únete a nuestra comunidad¿Tienes alguna idea o sugerencia? Habla directamente con nuestros ingenieros profesionales.Discord
Método HTTPLa API utiliza métodos HTTP estándar para realizar operaciones en los recursos:
MethodDescription
GETGET Request: Retrieve detailed information about a specified resource
POSTPOST Request: Create a new resource
PUTPUT Request: Fully update the specified resource
DELETEDELETE Request: Remove the specified resource
URL
La URL base para todas las solicitudes de API es:https://api.dynadot.com/
El formato de URL completa:Sure! Here’s the translation of your text into Spanish: http://api.dynadot.com/restful/version_code/resource/{resource_identify}/action
Of course! Please provide the text you would like me to translate into Spanish.
https://api.dynadot.com/restful/v1/domains/{domain_name}/search
Sure! Please provide the text you would like me to translate into Spanish.
La versión actual de la API esv
Al construir la URL de solicitud de la API, solo es necesario incluir la versión principal. Las actualizaciones menores y de parches están diseñadas para ser compatibles hacia atrás y no introducirán cambios que rompan tu código existente. Esto garantiza estabilidad mientras te permite beneficiarte de mejoras y correcciones incrementales sin necesidad de modificar tu implementación.Cuando se lancen versiones futuras, mantendremos la compatibilidad hacia atrás con versiones anteriores durante un período de tiempo. Se introducirán nuevas características y cambios importantes en incrementos de versiones mayores.
HeaderEl encabezado de una solicitud API contiene metadatos sobre la solicitud. Estos metadatos proporcionan un contexto esencial para que el servidor procese la solicitud correctamente. Los encabezados comúnmente utilizados incluyen:
Content-TypeEspecifica el formato de los datos que se envían en el cuerpo de la solicitud. El servidor utiliza esta información para analizar la solicitud correctamente. Actualmente, el único valor aceptable es: application/json
Of course! Please provide the text you would like me to translate into Spanish.
Content-Type: application/json
AceptarInforma al servidor sobre el formato de respuesta que espera el cliente.Valores posibles: application/json, application/xml
Of course! Please provide the text you would like me to translate into Spanish.
Accept: application/json
AutorizaciónTodas las solicitudes de API deben incluir una clave de API para la autenticación. Puedes obtener tu clave de API desde el panel de control de tu cuenta.You can generate an API key in API setting page
Ejemplo de Encabezado de Autenticación:
Authorization: Bearer YOUR_API_KEY
X-Request-IDEl encabezado X-Request-ID es un encabezado opcional utilizado para identificar de manera única cada solicitud de API. Cuando se incluye, este encabezado ayuda a rastrear y correlacionar solicitudes a través de sistemas y registros, facilitando la depuración y el monitoreo de la actividad de la API.El valor de X-Request-ID debe ser un UUID (Identificador Único Universal) válido, siguiendo el formato estándar: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx (por ejemplo, 123e4567-e89b-12d3-a456-426614174000).
Of course! Please provide the text you would like me to translate into Spanish.
X-Request-ID: 550e8400-e29b-41d4-a716-446655440000
Sure! Here’s the translation of "X-Signature" into Spanish: X-FirmaEl encabezado X-Signature es un mecanismo de seguridad obligatorio para solicitudes transaccionales, incluidas aquellas que recuperan información sensible o actualizan datos. Asegura la autenticidad, integridad y no repudio de las solicitudes de API al requerir que los clientes firmen la carga útil de la solicitud utilizando HMAC-SHA256.
Para generar la firma, necesitarás los siguientes valoresClave API: Tu clave API única.2. Ruta Completa y Consulta: La ruta completa del endpoint de la API junto con los parámetros de consulta.3. X-Request-Id: El ID de la solicitud. Si no está disponible, puedes ingresar una cadena vacía.4. Cuerpo de la Solicitud: El cuerpo de la solicitud. Si está vacío o es nulo, puedes ingresar una cadena vacía.
La cadena a firmar es una combinación de los valores mencionados anteriormente, concatenados en el siguiente orden:
apiKey + "\n" + fullPathAndQuery + "\n" + (xRequestId or empty String) + "\n" + (requestBody or empty String)
Example
apiKey = "your_api_key"
fullPathAndQuery = "/v1/some/endpoint?param=value"
xRequestId = "unique-request-id"
requestBody = "{\"key\":\"value\"}"


stringToSign = "your_api_key\n/v1/some/endpoint?param=value\nunique-request-id\n{\"key\":\"value\"}"
Generar la firma HMAC-SHA256Después de construir la cadena para firmar, necesitas aplicar HMAC-SHA256 encriptación utilizando tu clave secreta. Este proceso generará la firma.La firma se genera utilizando los siguientes pasos:1. Utiliza el algoritmo HMAC-SHA256.Sure! Please provide the text you would like me to translate into Spanish.3. Usa el secreto como la clave.
Aplica la firma generada como el valor de X-Signature en el encabezado de la solicitud.
Of course! Please provide the text you would like me to translate into Spanish.
X-Signature: {HMAC-SHA256 Signature}
BodyEl cuerpo de una solicitud API se utiliza para enviar datos al servidor. Comúnmente se incluye en solicitudes POST, PUT o PATCH (no suele utilizarse en solicitudes GET o DELETE).
Sure! Please provide the text you would like me to translate into Spanish.El formato de los datos del cuerpo está determinado por el encabezado Content-Type. Algunos formatos comunes incluyen:
JSON
{
  • domainName: "domain.com",
  • showPrice: "yes",
  • currency: "USD"
}
Casos de Uso TípicosSolicitudes POST: El método POST se utiliza para crear un nuevo recurso en el servidor. El cuerpo de la solicitud generalmente contiene los detalles del recurso.Solicitudes PUT: El método PUT se utiliza para actualizar un recurso existente reemplazándolo por completo. El cuerpo de la solicitud contiene el recurso actualizado en su totalidad.Solicitudes GET: El método DELETE se utiliza para eliminar un recurso existente del servidor. No tiene un cuerpo de solicitud.Solicitudes DELETE: El método GET se utiliza para recuperar un recurso existente del servidor. No tiene un cuerpo de solicitud
Response FormatTodas las respuestas de la API se devuelven en formato JSON o XML, y el formato de los datos del cuerpo se determina por el encabezado Accept, proporcionando los datos solicitados o un mensaje de error, si corresponde.
Sure! Please provide the text you would like me to translate into Spanish.Sure! Please provide the text you would like me to translate into Spanish.
Código: El estado de la solicitudMensaje: Más descripción del estadoDatos: El cuerpo de la respuesta
Sure! Please provide the text you would like me to translate into Spanish.
{
  • Code: "200",
  • Message: "Success",
  • Data: {}
}
Manejo de ErroresLos códigos de estado HTTP son números estandarizados de tres dígitos que devuelve un servidor para indicar el resultado de la solicitud de un cliente. Proporcionan información esencial sobre si la solicitud se procesó correctamente, si requiere una acción adicional o si se encontró un error. Estos códigos se dividen en cinco categorías, cada una representando un tipo distinto de respuesta.Los códigos de estado de nuestra API se adhieren al protocolo HTTP/1.1, un estándar ampliamente aceptado que garantiza una comunicación consistente y confiable. Al utilizar HTTP/1.1, aprovechamos características como conexiones persistentes y un mejor almacenamiento en caché para optimizar las interacciones entre el cliente y el servidor.
2xx (Exitoso): Indica que el comando fue recibido y aceptado.
200El código de estado indica que la solicitud ha tenido éxito.
201El código de estado indica que la solicitud ha sido cumplida y ha resultado en la creación de uno o más nuevos recursos.
202El código de estado indica que la solicitud ha sido aceptada para su procesamiento, pero el procesamiento no se ha completado.
249El usuario ha enviado demasiadas solicitudes en un período de tiempo determinado.
4xx (Error del Cliente): Indica que el cliente cometió un error en la solicitud, como proporcionar una entrada no válida o carecer de la autorización adecuada.
400El código de estado indica que el servidor no puede o no procesará la solicitud debido a algo que se percibe como un error del cliente.
401El código de estado indica que la solicitud no se ha aplicado porque carece de credenciales de autenticación válidas para el recurso objetivo.
402El código de estado indica que la solicitud no se ha aplicado debido a un problema de pago.
403El código de estado indica que el servidor entendió la solicitud pero se niega a cumplirla.
404El código de estado indica que el servidor de origen no encontró una representación actual para el recurso objetivo o no está dispuesto a revelar que existe una.
409La solicitud no se pudo completar debido a un conflicto con el estado actual del recurso.
5xx (Error del Servidor): Indica que el servidor encontró un error o no puede cumplir con la solicitud.
500El código de estado indica que el servidor encontró una condición inesperada que le impidió cumplir con la solicitud.
501El código de estado indica que el servidor no soporta la funcionalidad necesaria para cumplir con la solicitud.
502El código de estado indica que el servidor, al actuar como un gateway o proxy, recibió una respuesta inválida de un servidor de entrada al que accedió mientras intentaba cumplir con la solicitud.
503El código de estado indica que el servidor no puede manejar la solicitud en este momento debido a una sobrecarga temporal o mantenimiento programado, lo que probablemente se resolverá después de un breve retraso.
504El código de estado indica que el servidor, al actuar como un gateway o proxy, no recibió una respuesta oportuna de un servidor ascendente al que necesitaba acceder para completar la solicitud.
de dominio.Nombre del Estado
200Éxito
201Creado
202Aceptado
249Demasiadas solicitudes
400Solicitud incorrecta
401No autorizado
402Pago Requerido
403Prohibido
404No encontrado
409Conflicto
500Error Interno del Servidor
501No implementado
502Puerta de enlace incorrecta
503Servicio no disponible
504Tiempo de espera de la puerta de enlace
Limitación de tasaLas solicitudes deben enviarse a través de https (socket seguro) por razones de seguridad. Solo se puede procesar 1 solicitud a la vez, así que por favor espera a que tu solicitud actual termine antes de enviar otra solicitud.
Recibirás diferentes conteos de hilos según el nivel de precio de tu cuenta:
Price levelAccount
Regular1 thread
Bulk5 threads
Super Bulk25 threads
Of course! Please provide the text you would like me to translate into Spanish.
<Response>
  <status>
    <code>429</code>
    <message>Too Many Requests</message>
  </status>
  <error>
    <description>You have reached the maximum allowed requests within the concurrent limit of your account. Please try again later.</description>
  </error>
</Response>
{
  • code: 429,
  • message: "Too Many Requests",
  • : {1 item}
}
Resumen del Registro de Cambios
Un Registro de Cambios es un registro detallado de cambios, mejoras, correcciones de errores y nuevas características introducidas en cada versión de la API. Proporciona transparencia para los usuarios y desarrolladores al documentar el impacto de cada actualización. Se compone de dos partes clave:
Versión de la APIEsta parte destaca el sistema de versionado de la API, que ayuda a los desarrolladores a seguir la evolución de las características y garantizar la compatibilidad. Cada versión de la API se identifica con un número de versión único (por ejemplo, v1.0.1, v2.2.3) y representa un hito o lanzamiento significativo. El versionado permite a los usuarios mantener integraciones con una interrupción mínima al optar por actualizaciones cuando estén listos.
Historial de CambiosEl Historial de Cambios proporciona información detallada sobre actualizaciones, correcciones de errores, descontinuaciones y mejoras introducidas en cada versión. Describe los cambios específicos realizados en los puntos finales, parámetros, mecanismos de autenticación o formatos de respuesta. Esta sección garantiza que los desarrolladores tengan total transparencia sobre lo que ha cambiado y puedan ajustar sus implementaciones en consecuencia. Al mantener un registro de cambios claro y detallado, nuestro objetivo es proporcionar a los desarrolladores las herramientas y la información necesarias para gestionar integraciones de manera efectiva y con confianza.
Versión de la API
Nuestra API está actualmente en la versiónv
Los códigos de versión se utilizan para identificar y gestionar de manera sistemática las actualizaciones de la API. Siguen el formato de Versionado Semántico (SemVer):
Sure! Please provide the text you would like me to translate into Spanish.Sure! Please provide the text you would like me to translate into Spanish.Sure! Please provide the text you would like me to translate into Spanish.
Cada componente del código de versión cumple un propósito específico y ayuda a los desarrolladores a comunicar de manera efectiva el alcance y tipo de cambios.
Versión PrincipalDefinición: Representa cambios significativos que pueden romper la compatibilidad hacia atrás.Of course! Please provide the text you would like me to translate into Spanish.<Major>.x.x
Ejemplos:v1.0.0->v2.0.0Un rediseño completo de la API o cambios en el esquema incompatibles.
Versión menorDefinición: Indica adiciones de características compatibles hacia atrás.Of course! Please provide the text you would like me to translate into Spanish.x.<Minor>.x
Ejemplos:v1.0.0->v1.1.0Agregar nuevos puntos finales o métodos mientras se mantiene la compatibilidad hacia atrás.
Versión del parcheDefinición: Se refiere a correcciones de errores compatibles hacia atrás o mejoras menores.Of course! Please provide the text you would like me to translate into Spanish.x.x.<Patch>
Ejemplos:v1.0.0->v1.1.0Corrigiendo un error menor en un punto final de la API.
Registro de Cambios de la API
Un registro de cambios es un documento detallado de las modificaciones, mejoras, correcciones de errores y nuevas funciones introducidas en cada versión de un software o una API. Proporciona transparencia para los usuarios y desarrolladores al documentar el impacto de cada actualización.
Una entrada típica en un registro de cambios incluye:Descripción: Una breve explicación de lo que se cambió.Componentes Afectados: Módulos específicos, puntos finales o características afectadas por el cambio.
Ejemplo: Se agregó soporte para este nuevo comando de APISure! Here’s the translation: <Registro de Dominio>
Historial de CambiosMantente al tanto de cada cambio en la API de Dynadot.
    REGISTER Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the register command, the following parameters should be included:
    Request Parameters Expand All
    • The domain name.
      Show Properties
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • If you're considering registering a premium domain.
    • The coupon code plan to be used in the order.
    Result Parameters Expand All
    • The domain name.
    • The expiration date in timestamp.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/register
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • : {13 items},
    • currency: "String",
    • register_premium: false,
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String",
    • data: {
      • domain_name: "String",
      • expiration_date: "Long"
      }
    }
    RENEW Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the renew command, the following parameters should be included:
    Request Parameters Expand All
    • renewal duration in years.
    • year to renew.
    • The currency you would like to use for the purchase.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • coupon code.
    • Do not renew if late renew fee needed.
    Result Parameters Expand All
    • expiration date of the domain.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/renew
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • duration: 0,
    • year: 0,
    • currency: "String",
    • coupon: "String",
    • no_renew_if_late_renew_fee_needed: false
    }
    Response
    {
    • code: "Integer",
    • message: "String",
    • data: {
      • expiration_date: "Long"
      }
    }
    TRANSFER_IN Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the transfer_in command, the following parameters should be included:
    Request Parameters Expand All
    • The domain name.
      Show Properties
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • If you're considering transfer a premium domain.
    • The coupon code plan to be used in the order.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_in
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • : {13 items},
    • currency: "String",
    • transfer_premium: false,
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    RESTORE Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the restore command, the following parameters should be included:
    Request Parameters Expand All
    • The currency.
      Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
    • The coupon code plan to be used in the order.
    Api Request and Header
    POST https://api.dynadot.com/restful/v1/domains/{domain_name}/restore
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Request Body
    {
    • currency: "String",
    • coupon_code: "String"
    }
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    GRACE_DELETE Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the grace_delete command, the following parameters should be included:
    Request Parameters Expand All
    • If need to add this domain to grace delete waiting list if the grace delete quota has been reached.
    Api Request and Header
    DELETE https://api.dynadot.com/restful/v1/domains/{domain_name}/grace_delete
    Content-Type: application/json
    Accept: application/json
    Authorization: Bearer API_KEY
    X-Signature: {signature}
    Response
    {
    • code: "Integer",
    • message: "String"
    }
    SET_FOLDER Command
    Support multi-thread
    Support API Sandbox
    Require X-Signature
    If calling the set_folder command, the following parameters should be included:
    Request Parameters Expand All
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/folders/{folder_name}
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {}
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_DOMAIN_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_domain_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
      • Forward status of your domain you want, default value is "true", if you want to forward permanently, use this parameter with "false".
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/domain_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • forward_url: "String",
      • is_temporary: false
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_STEALTH_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_stealth_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
      • The title of the page.
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/stealth_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • stealth_url: "String",
      • stealth_title: "String"
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_EMAIL_FORWARDING Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_email_forwarding command, the following parameters should be included:
      Request Parameters Expand All
      • Forward type, it can be "donot": Do not forward email, "mx": Deliver email to another mail host (MX record), "forward": Deliver email to another mail host.
        Supported valuesNONE, MX, FORWARD
      • Only used when "forwardType" is "forward".
        Show Properties
      • Only used when "forwardType" is "mx".
        Show Properties
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/email_forwarding
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {}
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_RENEW_OPTION Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_renew_option command, the following parameters should be included:
      Request Parameters Expand All
      • You can choose a value from the following list to represent.
        Supported valuesRESET, AUTO, DONOT
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/renew_option
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • renew_option: "String"
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      SET_CONTACTS Command
      Support multi-thread
      Support API Sandbox
      Require X-Signature
      If calling the set_contacts command, the following parameters should be included:
      Request Parameters Expand All
      • Please select the contact ID you want to set as the registered contact ID.
      • Please select the contact ID you want to set as the admin contact ID.
      • Please select the contact ID you want to set as the technical contact ID.
      • Please select the contact ID you want to set as the billing contact ID.
      Api Request and Header
      PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/contacts
      Content-Type: application/json
      Accept: application/json
      Authorization: Bearer API_KEY
      X-Signature: {signature}
      Request Body
      {
      • registrant_contact_id: 0,
      • admin_contact_id: 0,
      • technical_contact_id: 0,
      • billing_contact_id: 0
      }
      Response
      {
      • code: "Integer",
      • message: "String"
      }
      GET_TRANSFER_STATUS Command
      Support multi-thread
      Support API Sandbox
      If calling the get_transfer_status command, the following parameters should be included:
      Request Parameters Expand All
        Result Parameters Expand All
        • The domain transfer status list information.
          Show Properties
        Api Request and Header
        GET https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_status/{transfer_type}
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        Response
        {}
        DOMAIN_GET_NAMESERVER Command
        Support multi-thread
        Support API Sandbox
        If calling the domain_get_nameserver command, the following parameters should be included:
        Request Parameters Expand All
        • The domain whose name server info you want to get.
        Result Parameters Expand All
        • The list of nameservers for the domain.
        • The name of the nameserver.
        Api Request and Header
        GET https://api.dynadot.com/restful/v1/domains/{domain_name}/nameservers
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        Response
        {
        • code: "Integer",
        • message: "String",
        • data: {}
        }
        DOMAIN_SET_NAMESERVER Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the domain_set_nameserver command, the following parameters should be included:
        Request Parameters Expand All
        • The list of nameservers you want to set.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/nameservers
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {}
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_HOSTING Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_hosting command, the following parameters should be included:
        Request Parameters Expand All
        • Type of the hosting you want, you can select in "Advanced" and "Basic".
          Supported valuesBASIC, ADVANCED
        • Only when hostingType is "advanced", can you use this parameter as "true".
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/hosts
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • hosting_type: "String",
        • is_model_view: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_PARKING Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_parking command, the following parameters should be included:
        Request Parameters Expand All
        • If you do not want a 3rd-party ads, you can use this parameter with "false".
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/parking
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • with_ads: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_PRIVACY Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_privacy command, the following parameters should be included:
        Request Parameters Expand All
        • The privacy status of the domain you want to set.
          Supported valuesOFF, PARTIAL, FULL
        • The whois privacy option of the domain you want to set.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/privacy
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • privacy_level: "String",
        • whois_privacy_option: false
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        SET_DNSSEC Command
        Support multi-thread
        Support API Sandbox
        Require X-Signature
        If calling the set_dnssec command, the following parameters should be included:
        Request Parameters Expand All
        • The key tag is a 16-bit unsigned integer (0 - 65535) used to uniquely identify a DNSSEC key pair. It ensures DS records match their corresponding DNS KEY records during DNSSEC validation.
        • You can choose the digest_type type listed below.
          Supported valuesSHA1, SHA256, GOST, SHA384
        • Please enter the value corresponding to the digest type you have selected.
        • You can choose the type of algorithm listed below.
          Supported valuesRSA_MD5, DIFFIE_HELLMAN, DSA_SHA1, ELLIPTIC_CURVE, RSA_SHA1, DSA_NSEC3_SHA1, RSA_SHA1_NSEC3_SHA1, RSA_SHA256, RSA_SHA512, GOST, ECDSA_P256_SHA256, ECDSA_P384_SHA384, ED25519, ED448, INDIRECT, PRIVATE_DNS, PRIVATE_OID
        • You can choose the type of flags listed below.
          Supported valuesZSK, KSK
        • The public key must be in base64 encoding.
        Api Request and Header
        PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
        Content-Type: application/json
        Accept: application/json
        Authorization: Bearer API_KEY
        X-Signature: {signature}
        Request Body
        {
        • key_tag: 0,
        • digest_type: "String",
        • digest: "String",
        • algorithm: "String",
        • flags: "String",
        • public_key: "String"
        }
        Response
        {
        • code: "Integer",
        • message: "String"
        }
        GET_DNSSEC Command
        Support multi-thread
        Support API Sandbox
        If calling the get_dnssec command, the following parameters should be included:
        Request Parameters Expand All
          Result Parameters Expand All
          • dnssecInfoList.
            Show Properties
          Api Request and Header
          GET https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
          Content-Type: application/json
          Accept: application/json
          Authorization: Bearer API_KEY
          Response
          {
          • code: "Integer",
          • message: "String",
          • data: {
            • dnssec_info_list: [
              1. {
                • key_tag: "Integer",
                • algorithm: "String",
                • digest_type: "String",
                • digest: "String"
                }
              ]
            }
          }
          CLEAR_DNSSEC Command
          Support multi-thread
          Support API Sandbox
          Require X-Signature
          If calling the clear_dnssec command, the following parameters should be included:
          Request Parameters Expand All
            Api Request and Header
            DELETE https://api.dynadot.com/restful/v1/domains/{domain_name}/dnssec
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            CLEAR_DOMAIN_SETTING Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the clear_domain_setting command, the following parameters should be included:
            Request Parameters Expand All
            • The service you want to clear the domain settings for, you can enter forward, stealth, email_forwarding, free, dns, nameservers.
              Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
            Api Request and Header
            PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/clear_domain_setting
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • service_type: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            SET_DOMAIN_LOCK_STATUS Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the set_domain_lock_status command, the following parameters should be included:
            Request Parameters Expand All
            • Set to true to lock the domain, false to unlock the domain.
            Api Request and Header
            PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/domain_lock
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • lock: false
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            PUSH Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the push command, the following parameters should be included:
            Request Parameters Expand All
            • The receiver's push username.
            • The receiver email.
            Api Request and Header
            POST https://api.dynadot.com/restful/v1/domains/{domain_name}/push
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • receiver_push_username: "String",
            • receiver_email: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            ACCEPT_PUSH Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the accept_push command, the following parameters should be included:
            Request Parameters Expand All
            • The action of the order to be processed.
              Supported valuesACCEPT, DECLINE
            Api Request and Header
            POST https://api.dynadot.com/restful/v1/domains/{domain_name}/accept_push
            Content-Type: application/json
            Accept: application/json
            Authorization: Bearer API_KEY
            X-Signature: {signature}
            Request Body
            {
            • push_action: "String"
            }
            Response
            {
            • code: "Integer",
            • message: "String"
            }
            GET_PENDING_PUSH_ACCEPT_REQUEST Command
            Support multi-thread
            Support API Sandbox
            Require X-Signature
            If calling the get_pending_push_accept_request command, the following parameters should be included:
            Request Parameters Expand All
              Result Parameters Expand All
              • List of domain names.
              Api Request and Header
              GET https://api.dynadot.com/restful/v1/domains/pending_accept_pushes
              Content-Type: application/json
              Accept: application/json
              Authorization: Bearer API_KEY
              X-Signature: {signature}
              Response
              {}
              GET_DNS Command
              Support multi-thread
              Support API Sandbox
              Require X-Signature
              If calling the get_dns command, the following parameters should be included:
              Request Parameters Expand All
                Result Parameters Expand All
                • The dns setting of the domain.
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/{domain_name}/records
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Response
                {}
                SET_DNS Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the set_dns command, the following parameters should be included:
                Request Parameters Expand All
                • List of main DNS records, max 20.
                  Show Properties
                • List of sub DNS records, max 100.
                  Show Properties
                • Time to live for DNS records, default is 86400.
                • Add DNS records to current settings, default is false.
                Api Request and Header
                POST https://api.dynadot.com/restful/v1/domains/{domain_name}/records
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Request Body
                {
                • : [1 item],
                • : [1 item],
                • ttl: 0,
                • add_dns_to_current_setting: false
                }
                Response
                {
                • code: "Integer",
                • message: "String"
                }
                SET_NOTE Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the set_note command, the following parameters should be included:
                Request Parameters Expand All
                • this domain's note.
                Api Request and Header
                PUT https://api.dynadot.com/restful/v1/domains/{domain_name}/notes
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Request Body
                {
                • note: "String"
                }
                Response
                {
                • code: "Integer",
                • message: "String"
                }
                GET_TRANSFER_AUTH_CODE Command
                Support multi-thread
                Support API Sandbox
                Require X-Signature
                If calling the get_transfer_auth_code command, the following parameters should be included:
                Request Parameters Expand All
                • Set to true if you want to generate a new auth code.
                • Set to true if you want to unlock the domain for transfer.
                Result Parameters Expand All
                • The transfer auth code.
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/{domain_name}/transfer_auth_code
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                X-Signature: {signature}
                Response
                {
                • code: "Integer",
                • message: "String",
                • data: {
                  • auth_code: "String"
                  }
                }
                GET_TLD_PRICE Command
                Support multi-thread
                Support API Sandbox
                If calling the get_tld_price command, the following parameters should be included:
                Request Parameters Expand All
                • The currency you would like to use for the search.
                  Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                • The page index.
                • The count per page.
                • The sort : nameAsc, nameDesc, etc.
                  Supported valuesRANK_ASC, RANK_DESC, NAME_ASC, NAME_DESC, SALES_ASC, SALES_DESC, LAUNCH_DATE_ASC, LAUNCH_DATE_DESC, COUNT_ASC, COUNT_DESC, REGISTRY_ASC, REGISTRY_DESC
                • Whether to show multi-year prices.
                Result Parameters Expand All
                • The page index.
                • The count per page.
                • The sort : nameAsc, nameDesc, etc.
                  Supported valuesRANK_ASC, RANK_DESC, NAME_ASC, NAME_DESC, SALES_ASC, SALES_DESC, LAUNCH_DATE_ASC, LAUNCH_DATE_DESC, COUNT_ASC, COUNT_DESC, REGISTRY_ASC, REGISTRY_DESC
                • The price level.
                • The currency you would like to use for the search.
                • Whether to show multi-year prices.
                • The list of TLD prices.
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains/get_tld_price
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                Response
                {
                • code: "Integer",
                • message: "String",
                • data: {
                  • page_index: "Integer",
                  • count_per_page: "Integer",
                  • sort: "String",
                  • price_level: "String",
                  • currency: "String",
                  • show_multi_year_price: "String",
                  • tldPriceList: [
                    1. {
                      • tld: "String",
                      • usage: "String",
                      • priceUnit: "String",
                      • allYearsRegisterPrice: [],
                      • allYearsRenewPrice: [],
                      • transferPrice: "String",
                      • restorePrice: "String",
                      • graceFeePrice: "String",
                      • supportPrivacy: "String",
                      • gracePeriodUnit: "String",
                      • renewGracePeriod: "String",
                      • restorePeriod: "String",
                      • deleteGracePeriod: "String",
                      • isIdn: "String",
                      • restriction: "String"
                      }
                    ]
                  }
                }
                DOMAIN_LIST Command
                Support multi-thread
                Support API Sandbox
                If calling the domain_list command, the following parameters should be included:
                Request Parameters Expand All
                • The sort type.
                  Supported valuesCOUNT_ASC, COUNT_DESC, NAME_ASC, NAME_DESC
                • The count per page.
                • The page index.
                Result Parameters Expand All
                • .
                  Show Properties
                Api Request and Header
                GET https://api.dynadot.com/restful/v1/domains
                Content-Type: application/json
                Accept: application/json
                Authorization: Bearer API_KEY
                Response
                GET_CONTACT Command
                Support multi-thread
                Support API Sandbox
                If calling the get_contact command, the following parameters should be included:
                Request Parameters Expand All
                  Result Parameters Expand All
                  • The contact object.
                    Show Properties
                  Api Request and Header
                  GET https://api.dynadot.com/restful/v1/contacts/{contact_id}
                  Content-Type: application/json
                  Accept: application/json
                  Authorization: Bearer API_KEY
                  Response
                  {
                  • code: "Integer",
                  • message: "String",
                  • data: {
                    • organization: "String",
                    • name: "String",
                    • email: "String",
                    • phone_number: "String",
                    • phone_cc: "String",
                    • fax_number: "String",
                    • fax_cc: "String",
                    • address1: "String",
                    • address2: "String",
                    • city: "String",
                    • state: "String",
                    • zip: "String",
                    • country: "String"
                    }
                  }
                  CONTACT_LIST Command
                  Support multi-thread
                  Support API Sandbox
                  If calling the contact_list command, the following parameters should be included:
                  Request Parameters Expand All
                    Result Parameters Expand All
                    • The list of contacts.
                      Show Properties
                    Api Request and Header
                    GET https://api.dynadot.com/restful/v1/contacts
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_list: [
                        1. {
                          • contact_id: "Integer",
                          • organization: "String",
                          • name: "String",
                          • email: "String",
                          • phone_number: "String",
                          • phone_cc: "String",
                          • fax_number: "String",
                          • fax_cc: "String",
                          • address1: "String",
                          • address2: "String",
                          • city: "String",
                          • state: "String",
                          • zip: "String",
                          • country: "String"
                          }
                        ]
                      }
                    }
                    CONTACT_CREATE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_create command, the following parameters should be included:
                    Request Parameters Expand All
                    • The Contact.
                      Show Properties
                    Result Parameters Expand All
                    • .
                    Api Request and Header
                    POST https://api.dynadot.com/restful/v1/contacts
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    X-Signature: {signature}
                    Request Body
                    {
                    • : {14 items}
                    }
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_id: "Integer"
                      }
                    }
                    CONTACT_UPDATE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_update command, the following parameters should be included:
                    Request Parameters Expand All
                    • The contact.
                      Show Properties
                    Result Parameters Expand All
                    • The contact id.
                    Api Request and Header
                    PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}
                    Content-Type: application/json
                    Accept: application/json
                    Authorization: Bearer API_KEY
                    X-Signature: {signature}
                    Request Body
                    {
                    • : {14 items}
                    }
                    Response
                    {
                    • code: "Integer",
                    • message: "String",
                    • data: {
                      • contact_id: "Integer"
                      }
                    }
                    CONTACT_DELETE Command
                    Support multi-thread
                    Support API Sandbox
                    Require X-Signature
                    If calling the contact_delete command, the following parameters should be included:
                    Request Parameters Expand All
                      Result Parameters Expand All
                      • The Id of contact.
                      Api Request and Header
                      DELETE https://api.dynadot.com/restful/v1/contacts/{contact_id}
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      CREATE_CN_AUDIT Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the create_cn_audit command, the following parameters should be included:
                      Request Parameters Expand All
                      • When the contact type is ENTERPRISE, you need to enter enterprise_id_type,enterprise_license_id, enterprise_url.
                        Supported valuesINDIVIDUAL, ENTERPRISE
                      • Individual ID type.
                        Supported valuesJGZ, SFZ, HZ, GAJMTX, TWJMTX, WJLSFZ, GAJZZ, TWJZZ, QT
                      • Document of natural person license ID. The file url on the server. Only jpg, gif, png, jpeg are allowed.
                      • The individual license ID.
                      • Enterprise type.
                        Supported valuesORG, YYZZ, TYDM, BDDM, JDDWFW, SYDWFR, WGCZJG, SHTTFR, ZJCS, MBFQY, JJHFR, LSZY, WGZHWH, WLCZJG, SFJD, JWJG, SHFWJG, MBXXBX, YLJGZY, GZJGZY, BJWSXX, QTTYDM, QT
                      • The License number of enterprise document.
                      • Document of enterprise license. The file url on the server. Only jpg, gif, png, jpeg are allowed.
                      Api Request and Header
                      POST https://api.dynadot.com/restful/v1/contacts/{contact_id}/create_cn_audit
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {
                      • contact_type: "String",
                      • individual_id_type: "String",
                      • individual_url: "String",
                      • individual_license_id: "String",
                      • enterprise_id_type: "String",
                      • enterprise_license_id: "String",
                      • enterprise_url: "String"
                      }
                      Response
                      {
                      • code: "Integer",
                      • message: "String"
                      }
                      GET_CN_AUDIT_STATUS Command
                      Support multi-thread
                      Support API Sandbox
                      If calling the get_cn_audit_status command, the following parameters should be included:
                      Request Parameters Expand All
                      • If you query the audit result of the cnnic-gtld, please set this parameter to true.
                      Result Parameters Expand All
                      • The audit status of cnnic audit record. You may got 'processing' or 'waiting for cnnic' or 'failed'. If failed, we will send you an email.
                      • If the audit unpassable, the failed reason will be displayed.
                      Api Request and Header
                      GET https://api.dynadot.com/restful/v1/contacts/{contact_id}/get_cn_audit_status
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • audit_status: "String"
                        }
                      }
                      SET_CONTACT_EU_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_eu_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for eu.
                        Show Properties
                      Result Parameters Expand All
                      • The contact.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_eu_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_LT_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_lt_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for lt.
                        Show Properties
                      Result Parameters Expand All
                      • The account ID.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_lt_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_LV_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_lv_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for lv.
                        Show Properties
                      Result Parameters Expand All
                      • The contact's ID you want to edit.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_lv_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      SET_CONTACT_IT_SETTING Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the set_contact_it_setting command, the following parameters should be included:
                      Request Parameters Expand All
                      • The contact extension for it.
                        Show Properties
                      Result Parameters Expand All
                      • The contact's ID you want to edit.
                      Api Request and Header
                      PUT https://api.dynadot.com/restful/v1/contacts/{contact_id}/set_it_setting
                      Content-Type: application/json
                      Accept: application/json
                      Authorization: Bearer API_KEY
                      X-Signature: {signature}
                      Request Body
                      {}
                      Response
                      {
                      • code: "Integer",
                      • message: "String",
                      • data: {
                        • contact_id: "Integer"
                        }
                      }
                      NAMESERVER_GET Command
                      Support multi-thread
                      Support API Sandbox
                      Require X-Signature
                      If calling the nameserver_get command, the following parameters should be included:
                      Request Parameters Expand All
                        Result Parameters Expand All
                        • The name server.
                          Show Properties
                        Api Request and Header
                        GET https://api.dynadot.com/restful/v1/nameservers/{nameserver}
                        Content-Type: application/json
                        Accept: application/json
                        Authorization: Bearer API_KEY
                        X-Signature: {signature}
                        Response
                        {
                        • code: "Integer",
                        • message: "String",
                        • data: {
                          • server_name: "String",
                          • ip_list: [
                            1. "String"
                            ]
                          }
                        }
                        NAMESERVER_LIST Command
                        Support multi-thread
                        Support API Sandbox
                        Require X-Signature
                        If calling the nameserver_list command, the following parameters should be included:
                        Request Parameters Expand All
                          Result Parameters Expand All
                          • The list of nameservers.
                            Show Properties
                          Api Request and Header
                          GET https://api.dynadot.com/restful/v1/nameservers
                          Content-Type: application/json
                          Accept: application/json
                          Authorization: Bearer API_KEY
                          X-Signature: {signature}
                          Response
                          {}
                          NAMESERVER_REGISTER Command
                          Support multi-thread
                          Support API Sandbox
                          Require X-Signature
                          If calling the nameserver_register command, the following parameters should be included:
                          Request Parameters Expand All
                          • The name server.
                            Show Properties
                          Api Request and Header
                          POST https://api.dynadot.com/restful/v1/nameservers/register
                          Content-Type: application/json
                          Accept: application/json
                          Authorization: Bearer API_KEY
                          X-Signature: {signature}
                          Request Body
                          {}
                          Response
                          {
                          • code: "Integer",
                          • message: "String"
                          }
                          NAMESERVER_ADD_EXTERNAL Command
                          Support multi-thread
                          Support API Sandbox
                          Require X-Signature
                          If calling the nameserver_add_external command, the following parameters should be included:
                          Request Parameters Expand All
                            Api Request and Header
                            POST https://api.dynadot.com/restful/v1/nameservers/{nameserver}/add_external
                            Content-Type: application/json
                            Accept: application/json
                            Authorization: Bearer API_KEY
                            X-Signature: {signature}
                            Request Body
                            {}
                            Response
                            {
                            • code: "Integer",
                            • message: "String"
                            }
                            NAMESERVER_SET_IP Command
                            Support multi-thread
                            Support API Sandbox
                            Require X-Signature
                            If calling the nameserver_set_ip command, the following parameters should be included:
                            Request Parameters Expand All
                            • The list of IPs you want to set to the name server.
                            Result Parameters Expand All
                            • The name server host.
                            • server id.
                            Api Request and Header
                            PUT https://api.dynadot.com/restful/v1/nameservers/{nameserver}/set_ip
                            Content-Type: application/json
                            Accept: application/json
                            Authorization: Bearer API_KEY
                            X-Signature: {signature}
                            Request Body
                            {}
                            Response
                            {
                            • code: "Integer",
                            • message: "String",
                            • data: {
                              • host: "String",
                              • server_id: "Integer"
                              }
                            }
                            NAMESERVER_DELETE Command
                            Support multi-thread
                            Support API Sandbox
                            Require X-Signature
                            If calling the nameserver_delete command, the following parameters should be included:
                            Request Parameters Expand All
                              Api Request and Header
                              DELETE https://api.dynadot.com/restful/v1/nameservers/{nameserver}
                              Content-Type: application/json
                              Accept: application/json
                              Authorization: Bearer API_KEY
                              X-Signature: {signature}
                              Response
                              {
                              • code: "Integer",
                              • message: "String"
                              }
                              GET_INFO Command
                              Support multi-thread
                              Support API Sandbox
                              Require X-Signature
                              If calling the get_info command, the following parameters should be included:
                              Request Parameters Expand All
                                Result Parameters Expand All
                                • The account information.
                                  Show Properties
                                Api Request and Header
                                GET https://api.dynadot.com/restful/v1/accounts/info
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Response
                                {
                                • code: "Integer",
                                • message: "String",
                                • data: {
                                  • account_info: {
                                    • username: "String",
                                    • forum_name: "String",
                                    • avatar_url: "String",
                                    • account_contact: {
                                      • organization: "String",
                                      • name: "String",
                                      • email: "String",
                                      • phone_number: "String",
                                      • phone_cc: "String",
                                      • fax_number: "String",
                                      • fax_cc: "String",
                                      • address1: "String",
                                      • address2: "String",
                                      • city: "String",
                                      • state: "String",
                                      • zip: "String",
                                      • country: "String"
                                      },
                                    • customer_since: "Long",
                                    • account_lock: "String",
                                    • custom_time_zone: "String",
                                    • default_registrant_contact_id: "Integer",
                                    • default_admin_contact_id: "Integer",
                                    • default_technical_contact_id: "Integer",
                                    • default_billing_contact_id: "Integer",
                                    • default_name_server_settings: {
                                      • type: "String",
                                      • with_ads: "String",
                                      • forward_to: "String",
                                      • forward_type: "String",
                                      • website_title: "String",
                                      • ttl: "String",
                                      • email_forwarding: {
                                        • type: "String"
                                        }
                                      },
                                    • total_spending: "String",
                                    • price_level: "String",
                                    • account_balance: "String",
                                    • balance_list: [
                                      1. {
                                        • currency: "String",
                                        • amount: "String"
                                        }
                                      ]
                                    }
                                  }
                                }
                                SET_DEFAULT_NAMESERVERS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_nameservers command, the following parameters should be included:
                                Request Parameters Expand All
                                • The list of nameservers you want to set.
                                Result Parameters Expand All
                                • The list of nameserver you want to set.
                                  Show Properties
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_nameservers
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {}
                                Response
                                {
                                • code: "Integer",
                                • message: "String",
                                • data: {}
                                }
                                SET_DEFAULT_DOMAIN_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_domain_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                • Whether the forwarding is temporary or permanent. If set to true, the forwarding will be removed after the first request is forwarded.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_domain_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • forward_url: "String",
                                • is_temporary: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_STEALTH_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_stealth_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The URL you want to set as the default stealth URL.
                                • The title of the page that the domain will forward to.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_stealth_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • stealth_url: "String",
                                • stealth_title: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_EMAIL_FORWARDING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_email_forwarding command, the following parameters should be included:
                                Request Parameters Expand All
                                • The type of email forwarding you want to set.
                                  Supported valuesMTYPE_NONE, MTYPE_FORWARD, MTYPE_MX
                                • The email alias list you want to set.
                                  Show Properties
                                • The mail exchange list you want to set.
                                  Show Properties
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_email_forwarding
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {}
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_CONTACTS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_contacts command, the following parameters should be included:
                                Request Parameters Expand All
                                • The ID of the contact you want to set as the default WHOIS registrant contact.
                                • The ID of the contact you want to set as the default WHOIS admin contact.
                                • The ID of the contact you want to set as the default WHOIS technical contact.
                                • The ID of the contact you want to set as the default WHOIS billing contact.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_contacts
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • registrant_contact_id: 0,
                                • admin_contact_id: 0,
                                • technical_contact_id: 0,
                                • billing_contact_id: 0
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_PARKING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_parking command, the following parameters should be included:
                                Request Parameters Expand All
                                • If you do not want a 3rd-party ads on the parking page.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_parking
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • with_ads: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_HOSTING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_hosting command, the following parameters should be included:
                                Request Parameters Expand All
                                • The default hosting type of the account you want to set.
                                  Supported valuesBASIC, ADVANCED
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_hosts
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • hosting_type: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_RENEW_OPTION Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_renew_option command, the following parameters should be included:
                                Request Parameters Expand All
                                • The renew option you want to set.
                                  Supported valuesRESET, AUTO, DONOT
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/default_renew_option
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • renew_option: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                CLEAR_DEFAULT_SETTING Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the clear_default_setting command, the following parameters should be included:
                                Request Parameters Expand All
                                • The service type for the default account setting you wish to reset.
                                  Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/accounts/clear_default_setting
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • service_type: "String"
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                SET_DEFAULT_DNS Command
                                Support multi-thread
                                Support API Sandbox
                                Require X-Signature
                                If calling the set_default_dns command, the following parameters should be included:
                                Request Parameters Expand All
                                • List of main DNS records, max 20.
                                  Show Properties
                                • List of sub DNS records, max 100.
                                  Show Properties
                                • Time to live for DNS records, default is 86400.
                                • Add DNS records to current settings, default is false.
                                Api Request and Header
                                PUT https://api.dynadot.com/restful/v1/default_records
                                Content-Type: application/json
                                Accept: application/json
                                Authorization: Bearer API_KEY
                                X-Signature: {signature}
                                Request Body
                                {
                                • : [1 item],
                                • : [1 item],
                                • ttl: 0,
                                • add_dns_to_current_setting: false
                                }
                                Response
                                {
                                • code: "Integer",
                                • message: "String"
                                }
                                FOLDER_LIST Command
                                Support multi-thread
                                Support API Sandbox
                                If calling the folder_list command, the following parameters should be included:
                                Request Parameters Expand All
                                  Result Parameters Expand All
                                  • The list of folders.
                                    Show Properties
                                  Api Request and Header
                                  GET https://api.dynadot.com/restful/v1/folders
                                  Content-Type: application/json
                                  Accept: application/json
                                  Authorization: Bearer API_KEY
                                  Response
                                  {}
                                  FOLDER_CREATE Command
                                  Support multi-thread
                                  Support API Sandbox
                                  Require X-Signature
                                  If calling the folder_create command, the following parameters should be included:
                                  Request Parameters Expand All
                                  • The name of the folder that you wish to create.
                                  Result Parameters Expand All
                                  • The name of the folder you created.
                                  • The ID of the folder you created.
                                  Api Request and Header
                                  POST https://api.dynadot.com/restful/v1/folders
                                  Content-Type: application/json
                                  Accept: application/json
                                  Authorization: Bearer API_KEY
                                  X-Signature: {signature}
                                  Request Body
                                  {
                                  • folder_name: "String"
                                  }
                                  Response
                                  {
                                  • code: "Integer",
                                  • message: "String",
                                  • data: {
                                    • folder_id: "Integer",
                                    • folder_name: "String"
                                    }
                                  }
                                  FOLDER_DELETE Command
                                  Support multi-thread
                                  Support API Sandbox
                                  Require X-Signature
                                  If calling the folder_delete command, the following parameters should be included:
                                  Request Parameters Expand All
                                    Api Request and Header
                                    DELETE https://api.dynadot.com/restful/v1/folders/{folder_name}
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_NAME Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_name command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The new name for the folder you wish to configure.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/name
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • new_folder_name: "String"
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_DNS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_dns command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The DNS main-records that you wish to configure for the DNS records.
                                      Show Properties
                                    • The DNS sub-records that you wish to configure for the DNS records.
                                      Show Properties
                                    • The TTL("Time To Live") of you wish to configure DNS records.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/records
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • : [1 item],
                                    • : [1 item],
                                    • ttl: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_NAMESERVER Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_nameserver command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The list of nameservers you wish to configure.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Result Parameters Expand All
                                    • servers.
                                      Show Properties
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/nameservers
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String",
                                    • data: {}
                                    }
                                    FOLDER_SET_CONTACTS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_contacts command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The ID of the contact you wish to configure as the registrant contact.
                                    • The ID of the contact you wish to configure as the administrative contact.
                                    • The ID of the contact you wish to configure as the technical contact.
                                    • The ID of the contact you wish to configure as the billing contact.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/contacts
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • reg_contact_id: 0,
                                    • admin_contact_id: 0,
                                    • tech_contact_id: 0,
                                    • bill_contact_id: 0,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_PARKING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_parking command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • Determines whether to display advertisements on the parking page. Set to 'true' to enable ads, or 'false' to keep the page ad-free. Default is 'false'.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/parking
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • with_ads: false,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_DOMAIN_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_domain_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                    • The forward status of your domain you want, default value is "true", if you wish to forward permanently, use this parameter with "false".
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/domain_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • forward_url: "String",
                                    • is_temporary: false,
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_STEALTH_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_stealth_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The URL you want your domain to forward to. Please note that the parameter must be encoded so that the API call is interpreted properly.
                                    • The title of the page that the domain will forward to.
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/stealth_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • stealth_url: "String",
                                    • stealth_title: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_EMAIL_FORWARDING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_email_forwarding command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The email forwarding type you wish to configure email forwarding, MTYPE_NONE: Do not forward email, MTYPE_FORWARD: Deliver email to another mail host, MTYPE_MX: Deliver email to another mail host (MX record).
                                      Supported valuesMTYPE_NONE, MTYPE_FORWARD, MTYPE_MX
                                    • The email alias list you wish to configure email forwarding.
                                      Show Properties
                                    • The mail exchange list you wish to configure email forwarding.
                                      Show Properties
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/email_forwarding
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {}
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_HOSTING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_hosting command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The hosting type of the folder that you wish to set hosting.
                                      Supported valuesBASIC, ADVANCED
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/hosts
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • hosting_type: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_SET_RENEW_OPTION Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_set_renew_option command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The renew option you wish to configure.
                                      Supported valuesRESET, AUTO, DONOT
                                    • Apply this setting to domains that will be moved to this folder in the future.
                                    • Synchronize the settings of all domains in this folder.
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/renew_option
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • renew_option: "String",
                                    • apply_for_future_domain: false,
                                    • sync_setting_to_existing_domains_in_this_folder: false
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    FOLDER_CLEAR_SETTING Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the folder_clear_setting command, the following parameters should be included:
                                    Request Parameters Expand All
                                    • The service type you wish to clear the setting.
                                      Supported valuesFORWARD, STEALTH, EMAIL_FORWARDING, DNS, NAMESERVERS
                                    Api Request and Header
                                    PUT https://api.dynadot.com/restful/v1/folders/{folder_name}/clear_setting
                                    Content-Type: application/json
                                    Accept: application/json
                                    Authorization: Bearer API_KEY
                                    X-Signature: {signature}
                                    Request Body
                                    {
                                    • service_type: "String"
                                    }
                                    Response
                                    {
                                    • code: "Integer",
                                    • message: "String"
                                    }
                                    ORDER_GET_STATUS Command
                                    Support multi-thread
                                    Support API Sandbox
                                    Require X-Signature
                                    If calling the order_get_status command, the following parameters should be included:
                                    Request Parameters Expand All
                                      Result Parameters Expand All
                                      • The id of the order to be queried.
                                      • the status of the order.
                                      • order status list.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/orders/{order_id}
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • order_id: "Integer",
                                        • order_status: "String",
                                        • order_status_item_list: [
                                          1. {
                                            • item_type: "String",
                                            • item_domain: "String",
                                            • item_status: "String"
                                            }
                                          ]
                                        }
                                      }
                                      ORDER_GET_HISTORY Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the order_get_history command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • When the type of searchType is DOMAIN, you need to enter the correct domain name.
                                      • When the type of searchType is ORDER_ID, you need to enter the correct orderId.
                                      • You can choose a value from the following list to represent.
                                        Supported valuesDATE_RANGE, DOMAIN, ORDER_ID
                                      • When the search type is DATE_RANGE, you need to enter the correct order start timestamp, enter a 13-digit numberand the start and end timestamp lengths need to be consistent.
                                      • When the search type is DATE_RANGE, you need to enter the correct order start timestamp, enter a 13-digit numberand the start and end timestamp lengths need to be consistent.
                                      • When the type of searchType is DOMAIN, You can choose one or more payment types from the following list:PAYPAL, ACCOUNT_BALANCE, CREDIT_CARD. If not specified, all payment types will be selected by default.
                                      Result Parameters Expand All
                                      • The list of orders.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/orders
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • order_list: [
                                          1. {
                                            • order_id: "Integer",
                                            • submitted_time: "Long",
                                            • currency: "String",
                                            • payment_method: "String",
                                            • total_cost: "String",
                                            • total_paid: "String",
                                            • status: "String",
                                            • order_item: [
                                              1. {
                                                • type: "String",
                                                • name: "String",
                                                • duration: "Integer",
                                                • cost: "String",
                                                • status: "String"
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      }
                                      CANCEL_TRANSFER Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the cancel_transfer command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • your domain name.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/cancel_transfer
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      AUTHORIZE_TRANSFER_AWAY Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the authorize_transfer_away command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The domain name to authorize transfer away.
                                      • Whether to approve the transfer away.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/authorize_transfer_away
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String",
                                      • approve: false
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_TRANSFER_AUTH_CODE Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_transfer_auth_code command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • your domain name.
                                      • your transfer auth code.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/orders/{order_id}/update_transfer_auth_code
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • domain_name: "String",
                                      • auth_code: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      ADD_NEW_LEAD Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the add_new_lead command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The lead type you want to set the lead for. Acceptable values are "buy_now", "make_offer".
                                        Supported valuesBUY_NOW, MAKE_OFFER
                                      • The domain name you want to add lead for, only 1 domain can be entered per request.
                                      • The price you want to set the lead for.
                                      • The buyers' name.
                                      • The buyers' email.
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarkets/leads
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • lead_type: "String",
                                      • domain_name: "String",
                                      • price: "String",
                                      • buyer_name: "String",
                                      • buyer_email: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_FOR_SALE Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_for_sale command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The type of sale you want to set for the domain(s).
                                        Supported valuesNOT_FOR_SALE, MARKETPLACE, AUCTION, PORTFOLIO_AUCTION
                                      • The currency you want to set the domain(s) for sale in.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      • The type of listing you want to set the domain(s) for sale as.
                                        Supported valuesBUY_NOW, MAKE_OFFER, BUY_NOW_AND_MAKE_OFFER
                                      • The price you want to set the domain(s) for sale at.
                                      • The minimum offer price you want to set the domain(s) for sale at.
                                      • The installment plan you want to set the domain(s) for sale with.
                                      • The maximum number of installments you want to set the domain(s) for sale with.
                                      • The category you want to set the domain(s) for sale in.
                                        Supported valuesADVERTISING, AUTOMOTIVE, BUSINESS, CARERRS_EDUCATION, CONSUMER_GOODS, ENTERTAINMENT, FASHION, FINANCE, GAMBLING, HEALTH, INTERNET, OTHER, PLACES, REAL_ESTATE, SCIENCE, SOCIETY, SPORTS, TECHNOLOGY, UNCATEGORIZED, ADULT, HOME, AI, AEROSPACE, AGENCY, AGRICULTURE_COMPANY, ANALYTICS, ALCOHOL, BABIES_KIDS, BIOTECH, CLEAN_ENERGY, CLEANING, COMMUNITY, CONSTRUCTION_ORGANIZATION, CRYPTOCURRENCY_BLOCKCHAIN, DATING_RELATIONSHIP, DAYCARE, DENTAL, DRONE, ECOMMERCE, FOOD_DRINK, FURNITURE, GAMES, INSURANCE, INTERIOR_DESIGN, LEGAL_LAW, MOTIVATIONAL, MANUFACTURING, MARKETING, MEDICAL, METAVERSE, MOVIES_TV, MUSIC_AUDIO, NEWS_MEDIA, NFT, OUTDOOR, PAYMENT, PETS, POLITICS, PROPERTY_MANAGEMENT, RECRUITMENT_STAFFING, SERVICES, SECURITY, SOCIAL, TRANSPORTATION, TRAVEL, VIDEO_BOOKS_MAGAZINES, VITUAL_REALITY, WEBSITE_DESIGN
                                      • The sub-category you want to set the domain(s) for sale in.
                                        Supported valuesMARKETING, RETAIL, SALES, CARS_TRUCKS, ENTHUSIASTS, MOTORSPORTS, INVESTMENT, LAW, MONEY, PROFESSIONS, SERVICES, APPAREL, ELECTRONICS, GAMES, POP_CULTURE, CASINO, SPORTS, FITNESS, MEDICINE, BLOGS, ECOMMERCE, DOMAINS, WEB_DESIGN, WEB_HOSTING, AFRICA, ASIA, EUROPE, NORTH_AMERICA, SOUTH_AMERICA, CULTURE, NEWS, POLITICS, RELIGION, LEISURE_ACTIVITIES, PROFESSIONAL, COMPUTERS
                                      • The description you want to set the domain(s) for sale with.
                                      • Whether you want to allow search engine indexing for the domain(s).
                                      Api Request and Header
                                      PUT https://api.dynadot.com/restful/v1/aftermarkets/domains/{domain_name}/for_sales
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • for_sale_type: "String",
                                      • currency: "String",
                                      • listing_type: "String",
                                      • price: "String",
                                      • minimum_offer_price: "String",
                                      • installment: "String",
                                      • maximum_installments: 0,
                                      • category: "String",
                                      • sub_category: "String",
                                      • description: "String",
                                      • allow_seo_index: false
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      SET_OTHER_PLATFORM_CONFIRM_ACTION Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the set_other_platform_confirm_action command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The action to be performed.
                                        Supported valuesCONFIRM, DELETE
                                      • The type of the platform type.
                                        Supported valuesAFTERNIC, SEDO
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/domains/{domain_name}/opt_in_fast_transfer
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • action: "String",
                                      • platform_type: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      GET_LISTINGS Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the get_listings command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the search.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      • Exclude pending sale.
                                      • Show other registrar.
                                      Result Parameters Expand All
                                      • List of listings.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/listings
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • listing_item_list: [
                                          1. {
                                            • listing_id: "Integer",
                                            • domain: "String",
                                            • price: "String",
                                            • in_bound_links: "Integer",
                                            • age: "Integer",
                                            • is_pending_sale_locked: "String"
                                            }
                                          ]
                                        }
                                      }
                                      GET_LISTING_ITEM Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the get_listing_item command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the search.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Result Parameters Expand All
                                      • The listing item.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/listings/{domain_name}
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {
                                        • listing_item: {
                                          • listing_id: "Integer",
                                          • domain: "String",
                                          • price: "String",
                                          • in_bound_links: "Integer",
                                          • age: "Integer",
                                          • is_pending_sale_locked: "String"
                                          }
                                        }
                                      }
                                      BUY_IT_NOW Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the buy_it_now command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the purchase.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/listings/{domain_name}/buy_it_now
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • currency: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      BUY_EXPIRED_CLOSEOUT_DOMAIN Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the buy_expired_closeout_domain command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The currency you would like to use for the purchase.
                                        Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                      Api Request and Header
                                      POST https://api.dynadot.com/restful/v1/aftermarket/expired_closeouts/{domain_name}/purchase
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      X-Signature: {signature}
                                      Request Body
                                      {
                                      • currency: "String"
                                      }
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String"
                                      }
                                      BACKORDER_REQUEST_LIST Command
                                      Support multi-thread
                                      Support API Sandbox
                                      If calling the backorder_request_list command, the following parameters should be included:
                                      Request Parameters Expand All
                                      • The start time of the backorder request, in milliseconds since epoch.
                                      • The end time of the backorder request, in milliseconds since epoch.
                                      Result Parameters Expand All
                                      • The list of backorder requests.
                                        Show Properties
                                      Api Request and Header
                                      GET https://api.dynadot.com/restful/v1/aftermarket/backorders/requests
                                      Content-Type: application/json
                                      Accept: application/json
                                      Authorization: Bearer API_KEY
                                      Response
                                      {
                                      • code: "Integer",
                                      • message: "String",
                                      • data: {}
                                      }
                                      ADD_BACKORDER_REQUEST Command
                                      Support multi-thread
                                      Support API Sandbox
                                      Require X-Signature
                                      If calling the add_backorder_request command, the following parameters should be included:
                                      Request Parameters Expand All
                                        Api Request and Header
                                        POST https://api.dynadot.com/restful/v1/aftermarket/backorders/requests/{domain_name}
                                        Content-Type: application/json
                                        Accept: application/json
                                        Authorization: Bearer API_KEY
                                        X-Signature: {signature}
                                        Request Body
                                        {}
                                        Response
                                        {
                                        • code: "Integer",
                                        • message: "String"
                                        }
                                        DELETE_BACKORDER_REQUEST Command
                                        Support multi-thread
                                        Support API Sandbox
                                        Require X-Signature
                                        If calling the delete_backorder_request command, the following parameters should be included:
                                        Request Parameters Expand All
                                          Api Request and Header
                                          DELETE https://api.dynadot.com/restful/v1/aftermarket/backorders/requests/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          X-Signature: {signature}
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String"
                                          }
                                          PLACE_AUCTION_BID Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the place_auction_bid command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency to use for the bid.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • The amount to bid.
                                          • Whether to backorder the domain.
                                          Result Parameters Expand All
                                          • The auction item details.
                                            Show Properties
                                          Api Request and Header
                                          POST https://api.dynadot.com/restful/v1/aftermarket/auctions/bids/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Request Body
                                          {
                                          • currency: "String",
                                          • bid_amount: 0,
                                          • is_backorder_auction: false
                                          }
                                          Response
                                          GET_AUCTION_BIDS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_auction_bids command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          Result Parameters Expand All
                                          • The list of auction bids.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/bids
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_bid_details: [
                                              1. {
                                                • bid_id: "Integer",
                                                • auction_id: "Integer",
                                                • account_id: "String",
                                                • domain: "String",
                                                • domain_utf: "String",
                                                • is_idn_domain: "String",
                                                • auction_type: "String",
                                                • current_bid: "String",
                                                • proxy_bid: "String",
                                                • bid_status: "String",
                                                • is_high_bidder: "String",
                                                • active_bidders: "Integer",
                                                • time_left: "String",
                                                • end_time: "String",
                                                • end_time_stamp: "Long"
                                                }
                                              ]
                                            }
                                          }
                                          GET_CLOSED_AUCTIONS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_closed_auctions command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • The timestamp indicating the start time of the search period.
                                          • The timestamp indicating the end time of the search period.
                                          Result Parameters Expand All
                                          • List of closed auctions.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/closed
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • ClosedAuctionList: [
                                              1. {
                                                • auction_id: "Integer",
                                                • domain: "String",
                                                • auction_status: "String",
                                                • bid_price: "String",
                                                • bids: "String",
                                                • end_time: "String",
                                                • end_timestamp: "Long",
                                                • auction_won_status: "String",
                                                • your_high_bid: "String",
                                                • your_proxy_bid: "String"
                                                }
                                              ]
                                            }
                                          }
                                          GET_OPEN_AUCTIONS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_open_auctions command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • Currency of the auction.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          • Auction types to get.
                                          Result Parameters Expand All
                                          • List of auction details.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/open
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_detail_info_list: [
                                              1. {
                                                • auction_id: "Integer",
                                                • domain_name_utf: "String",
                                                • current_price: "String",
                                                • currency: "String",
                                                • bids: "Integer",
                                                • end_time_utc: "String",
                                                • end_time_stamp: "Integer",
                                                • revenue: "String",
                                                • revenue_currency: "String",
                                                • visitors: "Integer",
                                                • inbound_links: "Integer",
                                                • age: "Integer"
                                                }
                                              ]
                                            }
                                          }
                                          GET_AUCTION_DETAILS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_auction_details command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The currency you would like to use for the purchase.
                                            Supported valuesUSD, GBP, EUR, INR, PLN, ZAR, LTL, CNY, CAD, JPY, NZD, RUB, AUD, MXN, BRL, IDR, ARS, COP, DKK, RSD, HKD, CHF, AED, MYR, NGN, KES, CZK
                                          Result Parameters Expand All
                                          • auction item detail.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/auctions/{domain_name}
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • auction_item_details: {
                                              • auction_id: "Integer",
                                              • domain_name: "String",
                                              • utf_name: "String",
                                              • is_idn: "String",
                                              • auction_type: "String",
                                              • current_bid_price: "String",
                                              • accepted_bid_price: "String",
                                              • currency: "String",
                                              • is_high_bidder: "String",
                                              • bids: "Integer",
                                              • bidders: "Integer",
                                              • auction_status_id: "Integer",
                                              • time_left: "String",
                                              • start_time: "String",
                                              • end_time: "String",
                                              • revenue: "String",
                                              • visitors: "Long",
                                              • links: "String",
                                              • age: "Integer",
                                              • estibot_appraisal: "String",
                                              • auction_ended: "String",
                                              • customer_bided: "String",
                                              • customer_bid: "String",
                                              • customer_proxy_bid: "String",
                                              • is_premium: "String",
                                              • renewal_price: "String",
                                              • revenue_currency: "String",
                                              • start_price: "String",
                                              • bid_history_item_list: [
                                                1. {
                                                  • bidder_name: "String",
                                                  • bid_price: "String",
                                                  • currency: "String",
                                                  • timestamp: "Long",
                                                  • bid_status: "String",
                                                  • is_proxy_auto_bid: "String"
                                                  }
                                                ],
                                              • auction_status_name: "String"
                                              }
                                            }
                                          }
                                          GET_WHOIS_STATS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_whois_stats command, the following parameters should be included:
                                          Request Parameters Expand All
                                          • The domain name to get whois stats for.
                                          • The date type to get whois stats for.
                                            Supported valuesLAST_7_DAYS, LAST_30_DAYS, CURRENT_YEAR, LAST_YEAR
                                          Result Parameters Expand All
                                          • The whois stats for the domain.
                                            Show Properties
                                          Api Request and Header
                                          GET https://api.dynadot.com/restful/v1/aftermarket/whois_stats
                                          Content-Type: application/json
                                          Accept: application/json
                                          Authorization: Bearer API_KEY
                                          Response
                                          {
                                          • code: "Integer",
                                          • message: "String",
                                          • data: {
                                            • stats: [
                                              1. {
                                                • date: "String",
                                                • count: "Long"
                                                }
                                              ]
                                            }
                                          }
                                          GET_EXPIRED_CLOSEOUT_DOMAINS Command
                                          Support multi-thread
                                          Support API Sandbox
                                          If calling the get_expired_closeout_domains command, the following parameters should be included:
                                          Request Parameters Expand All
                                            Result Parameters Expand All
                                            • The list of closeout items.
                                              Show Properties
                                            Api Request and Header
                                            GET https://api.dynadot.com/restful/v1/aftermarket/get_expired_closeout_domain/{currency}/{page_num}/{page_size}
                                            Content-Type: application/json
                                            Accept: application/json
                                            Authorization: Bearer API_KEY
                                            Response
                                            {
                                            • code: "Integer",
                                            • message: "String",
                                            • data: {
                                              • closeout_item_list: [
                                                1. {
                                                  • domain_name: "String",
                                                  • domain_name_utf: "String",
                                                  • current_price: "String",
                                                  • is_idn: "String",
                                                  • end_time_stamp: "Long",
                                                  • renewal_price: "String",
                                                  • expired_revenue: "String",
                                                  • estibot_appraisal: "String",
                                                  • inbound_links: "Integer",
                                                  • monthly_visitors: "Integer",
                                                  • currency: "String",
                                                  • is_active: "String",
                                                  • auction_id: "Integer",
                                                  • closeout_id: "Integer",
                                                  • age: "Integer",
                                                  • current_price_usd: "Long",
                                                  • price_usd: "Long",
                                                  • seller_price: "Long",
                                                  • registrar_account_id: "String",
                                                  • order_status: "Integer"
                                                  }
                                                ]
                                              }
                                            }
                                            GET_SITE_BUILDER Command
                                            Support multi-thread
                                            Support API Sandbox
                                            Require X-Signature
                                            If calling the get_site_builder command, the following parameters should be included:
                                            Request Parameters Expand All
                                              Result Parameters Expand All
                                              • .
                                                Show Properties
                                              Api Request and Header
                                              GET https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}
                                              Content-Type: application/json
                                              Accept: application/json
                                              Authorization: Bearer API_KEY
                                              X-Signature: {signature}
                                              Response
                                              {
                                              • code: "Integer",
                                              • message: "String",
                                              • data: {
                                                • sitebuilder: {
                                                  • domain_name: "String",
                                                  • template: "String",
                                                  • plan: "String",
                                                  • isPublished: "String"
                                                  }
                                                }
                                              }
                                              LIST_SITE_BUILDER Command
                                              Support multi-thread
                                              Support API Sandbox
                                              Require X-Signature
                                              If calling the list_site_builder command, the following parameters should be included:
                                              Request Parameters Expand All
                                                Result Parameters Expand All
                                                • The list of sitebuilder.
                                                  Show Properties
                                                Api Request and Header
                                                GET https://api.dynadot.com/restful/v1/sitebuilders
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • sitebuilder_list: [
                                                    1. {
                                                      • domain_name: "String",
                                                      • template: "String",
                                                      • plan: "String",
                                                      • isPublished: "String"
                                                      }
                                                    ]
                                                  }
                                                }
                                                CREATE_SITE_BUILDER Command
                                                Support multi-thread
                                                Support API Sandbox
                                                Require X-Signature
                                                If calling the create_site_builder command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • Whether to set the domain's DNS to the site builder's DNS.
                                                Result Parameters Expand All
                                                • The domain name of the site builder.
                                                • The URL of the site builder.
                                                Api Request and Header
                                                POST https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Request Body
                                                {
                                                • set_domain_dns: false
                                                }
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • domain_name: "String",
                                                  • server_url: "String"
                                                  }
                                                }
                                                UPGRADE_SITE_BUILDER Command
                                                Support multi-thread
                                                Support API Sandbox
                                                Require X-Signature
                                                If calling the upgrade_site_builder command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • Whether to set the domain's DNS to the site builder's DNS.
                                                Result Parameters Expand All
                                                • The domain name of the site builder.
                                                • The URL of the site builder.
                                                Api Request and Header
                                                POST https://api.dynadot.com/restful/v1/sitebuilders/{domain_name}/upgrade
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                X-Signature: {signature}
                                                Request Body
                                                {
                                                • set_domain_dns: false
                                                }
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • domain_name: "String",
                                                  • server_url: "String"
                                                  }
                                                }
                                                LIST_COUPONS Command
                                                Support multi-thread
                                                Support API Sandbox
                                                If calling the list_coupons command, the following parameters should be included:
                                                Request Parameters Expand All
                                                • The list of coupon types to get.
                                                  Supported valuesDOMAIN, RENEW, TRANSFER, RESTORE, PRIVACY, EMAIL_WEBHOST, VPS_WEBHOST, SSL, SITEBUILDER, SITEBUILDER_RENEW, EMAIL_WEBHOST_DOMAIN_BUNDLE, VPS_WEBHOST_DOMAIN_BUNDLE, SITEBUILDER_DOMAIN_BUNDLE, ORDER_LEVEL_DISCOUNT, DOMAIN_REGISTRATION_MATCH, DOMAIN_BUNDLE, DROP_CATCH, LOGO_BUILDER, RENEW_RESTORE
                                                Result Parameters Expand All
                                                • The list of coupons.
                                                  Show Properties
                                                Api Request and Header
                                                GET https://api.dynadot.com/restful/v1/orders/coupons
                                                Content-Type: application/json
                                                Accept: application/json
                                                Authorization: Bearer API_KEY
                                                Response
                                                {
                                                • code: "Integer",
                                                • message: "String",
                                                • data: {
                                                  • coupons: [
                                                    1. {
                                                      • code: "String",
                                                      • description: "String",
                                                      • coupon_type: "String",
                                                      • discount_type: "String",
                                                      • discount_info: {
                                                        • Percentage: "String"
                                                        },
                                                      • restriction: {
                                                        • price_levels: [
                                                          1. "String"
                                                          ],
                                                        • uses_per_account: "Integer",
                                                        • uses_system_wide: "Integer",
                                                        • uses_per_ip: "Integer",
                                                        • items_per_account: "Integer",
                                                        • items_system_wide: "Integer",
                                                        • items_per_order: "Integer",
                                                        • items_per_day: "Integer",
                                                        • domain_duration_min: "Integer",
                                                        • domain_duration_max: "Integer",
                                                        • idn_restriction: "String",
                                                        • tlds: [
                                                          1. "String"
                                                          ],
                                                        • currencies: [
                                                          1. "String"
                                                          ]
                                                        },
                                                      • start_date: "Long",
                                                      • end_date: "Long"
                                                      }
                                                    ]
                                                  }
                                                }
                                                ¿Estás seguro/a de que quieres cerrar el chat?El chat se cerrará y el historial de chat se borrará.
                                                continúa cerrar sesión
                                                o permanecer en el chat.
                                                Para revisar esta sesión de chat por favorclicesta ventana
                                                Chat Online
                                                Chat en línea0
                                                Privacy Notice
                                                Your use of this website is subject to our Terms of Use. We may process the following information about you: Google referral sources, page visits, country, IP address, domain searches and associated TLD rankings, single sign-on (Open ID), forum views, chats, account creation, order placement and form submissions. The purposes for this processing include: troubleshooting errors, abuse detection, targeted marketing, localizing data, site and usage statistics and communication with you. This is necessary for the proper provisioning of the services in this website. Your continued use of this website constitutes your implied consent for this processing.