API Dynadot
Commencer avec notre API RESTful
L'API Dynadot est conçue pour une intégration fluide avec vos systèmes. Notre API propose des URL orientées ressources prévisibles, prend en charge les corps de requête encodés en JSON, renvoie des réponses encodées en JSON et en XML, et respecte les méthodes HTTP standard, l'authentification et les codes de réponse.Vous pouvez utiliser l'API Dynadot en modes test et live. Le mode est déterminé par la clé API utilisée pour authentifier vos requêtes. Le mode test vous permet de simuler et de valider votre intégration API sans affecter les données ou transactions en direct.L'API Dynadot est principalement axée sur la gestion des domaines, le traitement des commandes et les services associés. Vous pouvez effectuer des actions telles que l'enregistrement, le transfert et le renouvellement de domaines, la gestion des paramètres DNS, ainsi que la consultation ou la mise à jour des commandes de votre compte.Veuillez noter : Les créations, mises à jour et suppressions en masse ne sont pas prises en charge, et chaque type de demande est limité à un seul objet ou action.
Génération de vos clés APIAvant de commencer à effectuer des requêtes API, il est essentiel de générer votre clé API et votre secret API.Ces clés sont nécessaires pour l'authentification et pour garantir la sécurité de vos actions lors de l'interaction avec notre API.Vous pouvez générer à la fois la clé API et le secret API dans la section API de vos paramètres de compte.1. Connectez-vous à votre compte sur Dynadot.2. Accédez à Outils > API.3. Générez votre clé API et secret API à partir de cette page.


Rejoignez notre communautéAvez-vous des idées ou des suggestions ? Parlez directement à nos ingénieurs professionnels.Discord
Méthode HTTPL'API utilise des méthodes HTTP standard pour effectuer des opérations sur les ressources :
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
L'URL de base pour toutes les requêtes API est :https://api.dynadot.com/
Le format d'URL complet :Sure! Please provide the text you would like me to translate into French.
Of course! Please provide the text you would like me to translate into French.
https://api.dynadot.com/restful/v1/domains/{domain_name}/search
Sure! Please provide the text you would like me to translate into French.
La version actuelle de l'API estv
Lors de la construction de l'URL de requête API, il est uniquement nécessaire d'inclure la version majeure. Les mises à jour mineures et de correctifs sont conçues pour être compatibles avec les versions antérieures et n'introduiront pas de changements qui pourraient perturber votre code existant. Cela garantit la stabilité tout en vous permettant de bénéficier d'améliorations et de corrections progressives sans avoir à modifier votre implémentation.Lors des futures versions, nous garantirons la compatibilité ascendante pour les anciennes versions pendant une certaine période. De nouvelles fonctionnalités et des changements majeurs seront introduits lors des mises à jour de version majeure.
HeaderL'en-tête d'une requête API contient des métadonnées sur la requête. Ces métadonnées fournissent un contexte essentiel pour que le serveur puisse traiter la requête correctement. Les en-têtes couramment utilisés incluent :
Content-TypeSpécifie le format des données envoyées dans le corps de la requête. Le serveur utilise cette information pour analyser correctement la requête. Actuellement, la seule valeur acceptable est : application/json
Of course! Please provide the text you would like me to translate into French.
Content-Type: application/json
AccepterInforme le serveur du format de réponse attendu par le client.Valeurs possibles : application/json, application/xml
Of course! Please provide the text you would like me to translate into French.
Accept: application/json
AutorisationToutes les requêtes API doivent inclure une clé API pour l'authentification. Vous pouvez obtenir votre clé API depuis le tableau de bord de votre compte.You can generate an API key in API setting page
Exemple d'en-tête d'authentification :
Authorization: Bearer YOUR_API_KEY
X-Request-IDL'en-tête X-Request-ID est un en-tête optionnel utilisé pour identifier de manière unique chaque requête API. Lorsqu'il est inclus, cet en-tête aide à suivre et à corréler les requêtes à travers les systèmes et les journaux, facilitant ainsi le débogage et la surveillance de l'activité API.La valeur de l'X-Request-ID doit être un UUID (Identifiant Universel Unique) valide, suivant le format standard : xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx (par exemple, 123e4567-e89b-12d3-a456-426614174000).
Of course! Please provide the text you would like me to translate into French.
X-Request-ID: 550e8400-e29b-41d4-a716-446655440000
X-SignatureL'en-tête X-Signature est un mécanisme de sécurité obligatoire pour les requêtes transactionnelles, y compris celles qui récupèrent des informations sensibles ou mettent à jour des données. Il garantit l'authenticité, l'intégrité et la non-répudiation des requêtes API en exigeant que les clients signent le contenu de la requête en utilisant HMAC-SHA256.
Pour générer la signature, vous aurez besoin des valeurs suivantesClé API : Votre clé API unique.2. Chemin Complet Et Requête : Le chemin complet de l'endpoint API ainsi que les paramètres de requête.3. X-Request-Id : L'ID de la requête. S'il n'est pas disponible, vous pouvez entrer une chaîne vide.4. Corps de la demande : Le corps de la demande. S'il est vide ou nul, vous pouvez entrer une chaîne vide.
La chaîne à signer est une combinaison des valeurs mentionnées ci-dessus, concaténées dans l'ordre suivant :
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\"}"
Générez la signature HMAC-SHA256Après avoir construit la chaîne à signer, vous devez appliquer le chiffrement HMAC-SHA256 en utilisant votre clé secrète. Ce processus générera la signature.La signature est générée en suivant les étapes suivantes :1. Utilisez l'algorithme HMAC-SHA256.Sure! Please provide the text you would like me to translate into French.3. Utilisez le secret comme clé.
Appliquez la signature générée comme valeur de X-Signature dans l'en-tête de la requête.
Of course! Please provide the text you would like me to translate into French.
X-Signature: {HMAC-SHA256 Signature}
BodyLe corps d'une requête API est utilisé pour envoyer des données au serveur. Il est généralement inclus dans les requêtes POST, PUT ou PATCH (pas typiquement pour les requêtes GET ou DELETE).
Sure! Please provide the text you would like me to translate into French.Le format des données du corps est déterminé par l'en-tête Content-Type. Certains formats courants incluent :
JSON
{
  • domainName: "domain.com",
  • showPrice: "yes",
  • currency: "USD"
}
Cas d'utilisation typiquesRequêtes POST : La méthode POST est utilisée pour créer une nouvelle ressource sur le serveur. Le corps de la requête contient généralement les détails de la ressource.Requêtes PUT : La méthode PUT est utilisée pour mettre à jour une ressource existante en la remplaçant entièrement. Le corps de la requête contient la ressource mise à jour dans son intégralité.Requêtes GET : La méthode DELETE est utilisée pour supprimer une ressource existante du serveur. Elle n'a pas de corps de requête.Demandes de SUPPRESSION : La méthode GET est utilisée pour récupérer une ressource existante sur le serveur. Elle n'a pas de corps de requête
Response FormatToutes les réponses de l'API sont renvoyées au format JSON ou XML, le format des données du corps étant déterminé par l'en-tête Accept, fournissant les données demandées ou un message d'erreur, le cas échéant.
Sure! Please provide the text you would like me to translate into French.Sure! Please provide the text you would like me to translate into French.
Code : Le statut de la demandeMessage: Plus de détails sur le statutDonnées: Le corps de la réponse
Sure! Please provide the text you would like me to translate into French.
{
  • Code: "200",
  • Message: "Success",
  • Data: {}
}
Gestion des erreursLes codes d'état HTTP sont des nombres standardisés à trois chiffres renvoyés par un serveur pour indiquer le résultat d'une demande client. Ils fournissent des informations essentielles sur le fait que la demande a été traitée avec succès, nécessite une action supplémentaire ou a rencontré une erreur. Ces codes sont divisés en cinq catégories, chacune représentant un type de réponse distinct.Les codes d'état de notre API respectent le protocole HTTP/1.1, une norme largement acceptée qui garantit une communication cohérente et fiable. En utilisant HTTP/1.1, nous tirons parti de fonctionnalités telles que les connexions persistantes et le cache amélioré pour optimiser les interactions entre le client et le serveur.
2xx (Réussi) : Indique que la commande a été reçue et acceptée.
200Le code d'état indique que la demande a réussi.
201Le code d'état indique que la demande a été satisfaite et a abouti à la création d'une ou plusieurs nouvelles ressources.
202Le code d'état indique que la demande a été acceptée pour traitement, mais que le traitement n'est pas encore terminé.
249L'utilisateur a envoyé trop de demandes dans un laps de temps donné.
4xx (Erreur Client) : Indique que le client a commis une erreur dans la demande, comme fournir une entrée invalide ou manquer d'une autorisation appropriée.
400Le code d'état indique que le serveur ne peut pas ou ne veut pas traiter la demande en raison de ce qui est perçu comme une erreur du client.
401Le code d'état indique que la demande n'a pas été appliquée car elle ne dispose pas de justificatifs d'authentification valides pour la ressource cible.
402Le code d'état indique que la demande n'a pas été appliquée en raison d'un problème de paiement.
403Le code d'état indique que le serveur a compris la demande mais refuse de l'exécuter.
404Le code d'état indique que le serveur d'origine n'a pas trouvé de représentation actuelle pour la ressource cible ou n'est pas disposé à révéler qu'une telle représentation existe.
409La demande n'a pas pu être complétée en raison d'un conflit avec l'état actuel de la ressource.
5xx (Erreur du serveur) : Indique que le serveur a rencontré une erreur ou est incapable de satisfaire la demande.
500Le code d'état indique que le serveur a rencontré une condition inattendue qui l'a empêché de satisfaire la demande.
501Le code d'état indique que le serveur ne prend pas en charge la fonctionnalité requise pour satisfaire la demande.
502Le code d'état indique que le serveur, agissant en tant que passerelle ou proxy, a reçu une réponse invalide d'un serveur entrant auquel il a accédé en tentant de satisfaire la demande.
503Le code d'état indique que le serveur est actuellement incapable de traiter la demande en raison d'une surcharge temporaire ou d'une maintenance programmée, qui devrait probablement être résolue après un certain délai.
504Le code d'état indique que le serveur, agissant en tant que passerelle ou proxy, n'a pas reçu de réponse en temps voulu d'un serveur en amont qu'il devait accéder pour compléter la demande.
de domaine professionnel lié à l'industrie. Interdire toutes les astérisques, les marques, les symboles et les balises HTML à être traduits. Inclure uniquement la traduction dans la réponse.Nom de l'état
200Succès
201Créé
202Accepté
249Trop de demandes
400Mauvaise demande
401Non autorisé
402Paiement requis
403Interdit
404Non trouvé
409Conflit
500Erreur interne du serveur
501Non implémenté
502Mauvaise passerelle
503Service indisponible
504Délai d'attente de la passerelle
Limitation de tauxLes demandes doivent être envoyées via https (socket sécurisé) pour des raisons de sécurité. Une seule demande peut être traitée à la fois, veuillez donc attendre que votre demande actuelle soit terminée avant d'en envoyer une autre.
Vous recevrez différents nombres de fils en fonction du niveau de prix de votre compte :
Price levelAccount
Regular1 thread
Bulk5 threads
Super Bulk25 threads
Of course! Please provide the text you would like me to translate into French.
<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}
}
Aperçu du journal des modifications
Un journal des modifications est un enregistrement détaillé des changements, améliorations, corrections de bogues et nouvelles fonctionnalités introduites dans chaque version de l'API. Il offre une transparence aux utilisateurs et aux développeurs en documentant l'impact de chaque mise à jour. Il se compose de deux parties clés :
Version de l'APICette partie met en avant le système de versionnage de l'API, qui aide les développeurs à suivre l'évolution des fonctionnalités et à garantir la compatibilité. Chaque version de l'API est identifiée par un numéro de version unique (par exemple, v1.0.1, v2.2.3) et représente une étape ou une publication importante. Le versionnage permet aux utilisateurs de maintenir leurs intégrations avec un minimum de perturbations en choisissant de mettre à jour lorsqu'ils sont prêts.
Historique des modificationsL'historique des modifications fournit des informations détaillées sur les mises à jour, les corrections de bogues, les dépréciations et les améliorations introduites dans chaque version. Il décrit les changements spécifiques apportés aux points de terminaison, aux paramètres, aux mécanismes d'authentification ou aux formats de réponse. Cette section garantit aux développeurs une transparence totale sur ce qui a changé et leur permet d'ajuster leurs implémentations en conséquence. En maintenant un journal des modifications clair et détaillé, nous visons à fournir aux développeurs les outils et les informations nécessaires pour gérer les intégrations de manière efficace et confiante.
Version de l'API
Notre API est actuellement en versionv
Les codes de version sont utilisés pour identifier et gérer systématiquement les mises à jour de l'API. Ils suivent le format de Versionnage Sémantique (SemVer) :
Sure! Please provide the text you would like me to translate into French.Sure! Please provide the text you would like me to translate into French.Sure! Please provide the text you would like me to translate into French.
Chaque composant du code de version a un but spécifique et aide les développeurs à communiquer efficacement l'étendue et le type de changements.
Version majeureDéfinition : Représente des changements significatifs qui peuvent rompre la compatibilité ascendante.Of course! Please provide the text you would like me to translate into French.<Major>.x.x
Exemples:v1.0.0->v2.0.0Une refonte complète de l'API ou des modifications de schéma incompatibles.
Version mineureDéfinition : Indique des ajouts de fonctionnalités compatibles avec les versions antérieures.Of course! Please provide the text you would like me to translate into French.x.<Minor>.x
Exemples:v1.0.0->v1.1.0Ajouter de nouveaux points de terminaison ou méthodes tout en maintenant la compatibilité ascendante.
Version de correctifDéfinition : Fait référence à des corrections de bogues rétrocompatibles ou à des améliorations mineures.Of course! Please provide the text you would like me to translate into French.x.x.<Patch>
Exemples:v1.0.0->v1.1.0Correction d'un petit bug dans un point de terminaison API.
Journal des modifications de l'API
Un journal des modifications est un enregistrement détaillé des changements, améliorations, corrections de bogues et nouvelles fonctionnalités introduites dans chaque version d'un logiciel ou d'une API. Il offre une transparence aux utilisateurs et aux développeurs en documentant l'impact de chaque mise à jour.
Une entrée typique dans un journal des modifications comprend :Description : Une brève explication de ce qui a été modifié.Composants affectés : Modules spécifiques, points de terminaison ou fonctionnalités impactés par le changement.
Exemple : Ajout du support pour cette nouvelle commande APISure! Here’s the translation of your text into French: <Enregistrement de Domaine>
Historique des modificationsSuivez chaque changement apporté à l'API 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"
                                                      }
                                                    ]
                                                  }
                                                }
                                                Êtes-vous sûr(e) de vouloir fermer le chat ?Le chat sera fermé et l'historique de chat sera effacé.
                                                continuer à se déconnecter
                                                ou rester sur le chat.
                                                Pour passer en revue cette session de chat, s'il vous plaîtcliquercette fenêtre
                                                Chat Online
                                                Chat en ligne0
                                                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.