# NetIntel WHOIS/RDAP Domain Lookup

> NetIntel WHOIS/RDAP Domain Lookup is a paid API for AI agents from netintel.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Looks up a domain name via RDAP and returns registration details, expiry, registrar, status flags, and a scored health grade.

## Facts

- Endpoint: GET https://netintel.dev/whois-rdap/lookup
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-whois-rdap-domain-lookup-3b9df087
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0DO5NrHg13rd09Q_hDikm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability netintel-whois-rdap-domain-lookup-3b9df087
```

Example prompt: Can you look up the WHOIS/RDAP registration details for stripe.com — I want to see the registrar, expiry date, name servers, status flags, and whether it has any abuse indicators or health issues?

## When to prefer this

Use this endpoint when you need structured, scored domain registration intelligence beyond raw WHOIS text — particularly when you want health grading, expiry warnings, abuse flag detection, and registrar details in a single parsed response. Prefer over raw WHOIS tools when you need machine-readable output with risk scoring.

## Known failure modes

- Domain not found or not registered — RDAP returns no data
- Invalid domain name format — query rejected
- TLD not supported by any known RDAP bootstrap server
- Network timeout reaching the upstream RDAP server
- Rate limiting or payment failure via x402

## How this service works

WHOIS domain lookup via RDAP — registrar, creation/expiry/updated dates, nameservers, and status flags from the authoritative registry, plus an actionability score so agents can assess domain trustworthiness, ownership, or availability risk.

## Output

A JSON object containing the domain's TLD, registrar name and IANA ID, creation/update/expiry timestamps, days until expiry, list of RDAP status flags, a boolean indicating abuse-related status flags, a list of scored findings (with deductions), an overall numeric score (0-100), a letter grade (e.g. 'A', 'B'), and the RDAP lookup URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain name to look up (e.g. example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tld": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "status": {
       "type": "array"
      },
      "findings": {
       "type": "array"
      },
      "rdap_url": {
       "type": "string"
      },
      "registrar": {
       "type": "string"
      },
      "created_at": {
       "type": "string"
      },
      "expires_at": {
       "type": "string"
      },
      "updated_at": {
       "type": "string"
      },
      "name_servers": {
       "type": "array"
      },
      "raw_rdap_url": {
       "type": "string"
      },
      "days_until_expiry": {
       "type": "number"
      },
      "registrar_iana_id": {
       "type": "string"
      },
      "status_has_abuse_flags": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tld": "com",
  "grade": "B",
  "score": 85,
  "domain": "example.com",
  "status": [
   "client delete prohibited",
   "client transfer prohibited"
  ],
  "findings": [
   {
    "rule": "expires_within_90_days",
    "detail": "Domain expires in 37 days",
    "deduction": -15
   }
  ],
  "rdap_url": "https://rdap.verisign.com/com/v1/domain/example.com",
  "registrar": "RESERVED-Internet Assigned Numbers Authority",
  "created_at": "1995-08-14T04:00:00Z",
  "expires_at": "2026-08-13T04:00:00Z",
  "updated_at": "2026-01-16T18:26:50Z",
  "name_servers": [
   "elliott.ns.cloudflare.com",
   "hera.ns.cloudflare.com"
  ],
  "raw_rdap_url": "https://rdap.verisign.com/com/v1/domain/example.com",
  "days_until_expiry": 37,
  "registrar_iana_id": "376",
  "status_has_abuse_flags": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-whois-rdap-domain-lookup-3b9df087/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
