# NetIntel WHOIS/RDAP Domain Lookup

> NetIntel WHOIS/RDAP Domain Lookup is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Looks up domain registration metadata via RDAP, returning registrar info, creation/expiry dates, nameservers, status flags, and a trustworthiness/availability score.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/whois-rdap/lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-production-440c-up-railway-app-d0d087df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JHNmyaIAYOtsGXLmYyGp0

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-production-440c-up-railway-app-d0d087df
```

Example prompt: Can you look up the RDAP registration details for stripe.com — I want to know who the registrar is, when it was created, when it expires, and whether it has any abuse flags or trustworthiness concerns?

## When to prefer this

Use this endpoint when you need structured, machine-readable domain registration metadata (registrar, dates, nameservers, status) with a pre-computed trustworthiness/availability score and abuse flag detection. Prefer over raw WHOIS when you want normalized output with an actionability grade rather than free-text WHOIS responses.

## Known failure modes

- Domain not found in RDAP registry — returns error or empty result
- Invalid domain format supplied — validation error
- TLD not supported by any known RDAP bootstrap server — lookup fails
- RDAP registry temporarily unavailable — timeout or upstream error
- Payment not included or insufficient — 402 Payment Required

## How this service works

Look up domain registration metadata via RDAP — returns registrar, creation/expiry dates, nameservers, status flags, and an actionability score so agents can assess domain trustworthiness or availability risk.

## Output

Returns a structured object with the domain's TLD, registrar name, IANA registrar ID, creation/updated/expiry timestamps, days until expiry, nameservers list, status flags array, whether abuse flags are present, an actionability score (numeric), a letter grade, a findings array with notable observations, and the raw RDAP URL used for the lookup.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "google.com"
  }
 }
}
```

## 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-production-440c-up-railway-app-d0d087df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
