Domain Intelligence Updated May 18, 2026

Domain WHOIS / RDAP API

Look up domain registration, TLD, registrar, age, status, risk, and source metadata.

The Domain WHOIS / RDAP API returns a normalized domain ownership and registration summary. Use it when you need registrar and registration context for investigations, fraud checks, or abuse triage.

Authentication is required.

Endpoint

GET https://api.requestguard.com/v1/domain/{domain}/rdap

Parameters

ParameterTypeRequiredDescription
domainstringYesDomain name to query, such as example.com.

Example Request

curl "https://api.requestguard.com/v1/domain/example.com/rdap" \
  -H "Authorization: Bearer rg_sk_live_..."

Example Response

{
  "type": "domain",
  "domain": "example.com",
  "tld": "com",
  "registrar": "Example Registrar",
  "domain_age_days": 11234,
  "status": "active",
  "risk": {
    "suspicious_tld": false,
    "newly_registered": false,
    "threat_list_match": false,
    "typosquatting_risk": false
  },
  "lookup": {
    "method": "heuristic",
    "fallback_used": false,
    "confidence": 0.68
  },
  "sources": [
    {
      "name": "Domain registration lookup",
      "type": "rdap",
      "matched": true,
      "category": "registration"
    },
    {
      "name": "Domain heuristic",
      "type": "heuristic",
      "matched": false,
      "category": "domain_risk"
    }
  ]
}

Response Fields

FieldMeaning
typeAlways domain for this endpoint.
domainQueried domain.
tldTop-level domain.
registrarRegistrar name when known.
domain_age_daysApproximate registration age when known.
statusNormalized registration status.
riskRegistration and reputation risk flags.
lookupLookup method, fallback flag, and confidence metadata.
sourcesSource metadata used to build the response.