Retrieve details of specific nameserver profile.
Request
Add parameter in header API-Key
Example:API-Key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/domains/nameservers/nameservers-profile' \
--header 'Accept;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>'
Responses
application/json {
"status": 200,
"status_description": "Request successful",
"data": {
"alias": "mijnhost-test",
"nameservers": [
{
"hostname": "ns1.mijn.host",
"ipv4": "5.254.117.200",
"ipv6": "2a03:5180:7:2:13af:27fb:f741:1"
},
{
"hostname": "ns2.mijn.host",
"ipv4": "45.140.188.195",
"ipv6": "2a0b:64c0:1::b0"
},
{
"hostname": "ns3.mijn.host",
"ipv4": "83.96.241.95",
"ipv6": "2a02:348:5e6:1::b6a0"
}
]
}
}
Modified at 2025-07-21 16:42:24