Check and verify the DNS records for a specific domain. This endpoint returns information about the domain's DNS settings, including A records, CNAME records, and nameservers. It also returns a requestId for follow-up calls.
Accept Example Content-Type Example domain string required success boolean timestamp string requestId string data object error string message string code string timestamp string requestId string error string message string code string timestamp string requestId string details array https://cloud.hostup.se/api/scan-dns-records curl -X POST "https://cloud.hostup.se/api/scan-dns-records" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "string"
}' {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"domain": "string",
"records": [
{
"type": "string",
"name": "string",
"value": "string",
"isCloudflare": true,
"cloudflareWarning": "string",
"isEditable": true
}
],
"nameservers": [
"string"
],
"isHostupDomain": true
}
} {
"domain": "string"
}