Domain Whois

This API allows you to fetch WHOIS and RDAP data for a domain name, including registrar, nameserver, status, DNSSEC, registrant, abuse contact, and source metadata when available.

API Usage

This API does not require a search type.

Request

POST https://api.inteldive.com/tools/domain-whois
Content-Type: application/json
Auth: API_KEY
{
  "terms": [ "example.com" ]
}

Response

{
  "size": 1,
  "took": 265,
  "matches": ["example.com"],
  "results": {
    "example.com": {
      "query": "example.com",
      "domain": "example.com",
      "tld": "com",
      "registrar": {
        "name": "Example Registrar LLC",
        "iana_id": "9999",
        "whois_server": "whois.example.com"
      },
      "ns": ["ns1.example.com", "ns2.example.com"],
      "status": ["clientTransferProhibited"],
      "dnssec": { "signed": false },
      "dates": {
        "created": "1995-08-14T04:00:00.000Z",
        "updated": "2026-01-01T00:00:00.000Z",
        "expires": "2027-08-13T04:00:00.000Z"
      },
      "registrant": {
        "org": "Example LLC"
      },
      "abuse": {
        "email": "abuse@example.com"
      },
      "meta": {
        "source": "rdap",
        "server": "https://rdap.example.com/rdap",
        "fetched_at": "2026-06-27T00:00:00.000Z"
      }
    }
  }
}