Verify DNS records for a domain

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.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domain string required

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
422
error string
message string
code string
timestamp string
requestId string
details array
POST https://cloud.hostup.se/api/scan-dns-records
For AI assistants
cURL
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"
  }'
Response
{
  "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
  }
}
Request Body
{
  "domain": "string"
}