Velohost Velohost

DNS Lookup API

Run live DNS lookups and retrieve mail-auth and deliverability signals with one endpoint.

Live diagnostics • Stateless processing • API-ready output

Last Updated: 01 April 2026

The Velohost DNS Lookup API provides a single endpoint for retrieving core DNS records, SRV records, and email-authentication checks.

It is designed for technical SEO workflows, mail-deliverability checks, deployment diagnostics, and automated infrastructure health scripts.

Base API URL

All endpoints listed below are relative to this base URL.

Base API URL https://api.velohost.co.uk/dns-lookup/

Rate Limiting

This API is protected by a global rate limit to ensure fair usage and platform stability.

  • Limit: 30 requests per 10 seconds per IP address
  • Burst traffic is allowed
  • No authentication required
  • Requests exceeding the limit return HTTP 429

This limit applies across all Velohost public APIs.

Error Responses

The API uses standard HTTP status codes to indicate errors.

429 Too Many Requests

Returned when the global rate limit is exceeded.

400 Bad Request

Returned when the domain parameter is missing or cannot be normalised into a valid hostname.

Endpoint

Generate DNS report

Accepts domains with or without protocol (example.com, https://example.com, http://example.com) and returns DNS plus deliverability diagnostics.

Request
GET /report?domain=example.com
Response
{
  "domain": "example.com",
  "summary": {
    "headline": "DNS is configured and resolvable",
    "next_best_action": "Review DMARC policy for enforcement"
  },
  "dns": {
    "a": ["93.184.216.34"],
    "aaaa": [],
    "mx": [{ "host": "mx.example.com", "priority": 10 }],
    "ns": ["ns1.example.net", "ns2.example.net"],
    "txt": ["v=spf1 include:_spf.example.net ~all"],
    "soa": {
      "mname": "ns1.example.net",
      "rname": "hostmaster.example.net"
    }
  },
  "srv": {
    "email": {},
    "voip": {}
  },
  "deliverability": {
    "overall": { "score": 87 },
    "explanation": "SPF and DKIM detected. DMARC is present in monitor mode."
  }
}

Implementation Guidance

For production use, validate input before sending requests, implement retry with exponential backoff on 429 or transient failures, and log normalized responses for trend monitoring.

Learn more

Explore the tool, documentation, and guides.