4 Domains API: How to retrieve TLD specific data

This is a series of articles dedicated to demonstrating how to get acquainted with Openprovider Domains API methods. To get more information about our API in general, please use our documentation portal as your reference.

Additional domain fields (also commonly referred to as Extended Attributes) define the information required by domain registries for a given TLD.

While most extensions can be registered with just the basic contact data (company name, contact name, address, telephone number, and e-mail address), several extensions require additional contact information in order to register a domain name. When a domain registry requires the information, a domain name will fail to register successfully unless the values are provided.

Typical information requested by domain registries includes things such as Registrant Legal Type, Registered Entity Name, etc.

Entering Geo Fence iconUse the endpoint path below. The base URL is determined by both the target environment and the API version.

GET {base_url}/domains/additional-data

REQUEST VALUES

Name Type Description
domain.extension string Required.

REQUEST EXAMPLE

curl -X GET \
'https://api.openprovider.eu/v1beta/domains/additional-data?domain.extension=no' \
-H 'Authorization: Bearer eca82663f*******76d063d8f6196' \

RESPONSE EXAMPLE

{
"code": 0,
"desc": "",
"data": [
{
"name": "company_registration_number",
"description": "Company registration number. Required in case if domain requester is a legal entity",
"required": false,
"type": "text"
},
{
"name": "company_registration_number",
"description": "Company registration number. Required in case if domain requester is a legal entity",
"required": false,
"type": "text"
}
]
}

 

Was this article helpful?
Additional questions? Submit a request