Retrieve DNS records of specific domain.
Request
Add parameter in header API-Key
Example:API-Key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/domains/domain.com/dns' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"domain": "string",
"records": [
{
"type": "string",
"name": "string",
"value": "string",
"ttl": 0
}
]
}
}
Modified at 2026-05-06 13:11:22