v1

latestOpenAPI 3.1.12026-07-17111158225.7 KB
tlds

List TLD extended attributes

Lists a TLD extended attributes.

Some TLDs require extended attributes when registering or transferring a domain. This API interface provides information on the extended attributes for any particular TLD. Extended attributes are extra TLD-specific attributes, required by the TLD registry to collect extra information about the registrant or legal agreements.

get/tlds/{tld}/extended_attributes

Path parameters

tldstring required

The TLD string

Response

Successfully retrieved the extended attributes for the TLD.

Example response

{
  "data": [
    {
      "name": "uk_legal_type",
      "description": "Legal type of registrant contact",
      "required": true,
      "options": [
        {
          "title": "UK Individual",
          "value": "IND",
          "description": "UK Individual (our default value)"
        },
        {
          "title": "Non-UK Individual (representing self)",
          "value": "FIND",
          "description": "Non-UK Individual (representing self)"
        }
      ],
      "title": "UK Legal Type"
    }
  ]
}