# AgentBit Domain Intelligence (RDAP)

> AgentBit Domain Intelligence (RDAP) is a paid API for AI agents from agentbit.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns full RDAP-sourced domain intelligence including registration dates, registrar, EPP statuses, nameservers, DNSSEC, risk flags, and availability for any domain.

## Facts

- Endpoint: POST https://agentbit.app/v1/domain/intel
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-domain-intelligence-rdap-34cd8dfe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-syit_Bk6Vw4oLs7L8FLQ

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 agentbit-domain-intelligence-rdap-34cd8dfe -d '<json body>'
```

Example prompt: Can you pull full domain intelligence on openai.com — I need the registration date, expiry, registrar, EPP statuses, nameservers, DNSSEC info, and whether there are any risk flags like it being newly registered or on hold?

## When to prefer this

Choose this endpoint when you need authoritative, structured registry data for a domain — especially for fraud screening, risk assessment, or compliance checks — rather than scraping informal WHOIS text. Prefer this over raw WHOIS tools when you need computed fields like age_days, days_to_expiry, and structured risk flags in clean JSON without parsing overhead. Best for per-domain lookups where official EPP status codes, DNSSEC state, and registrar identity matter.

## Known failure modes

- Domain not found in RDAP / unregistered: returns available:true with minimal data
- Invalid domain format (includes scheme or path): validation error
- TLD not supported by RDAP: may return incomplete or empty data
- RDAP registry timeout: upstream error response
- Malformed domain string: 400-level error

## How this service works

Full domain intelligence via RDAP (the registries' official WHOIS successor): registration and expiry dates with computed age, registrar, EPP status codes, nameservers, DNSSEC — plus derived risk flags (newly registered, hold status, expiring) and a clean availability answer for unregistered domains. Registry data, structured JSON, no scraping.

## Output

A structured JSON object containing: domain availability (boolean), registered (boolean), creation and expiry timestamps, computed age in days and days-to-expiry, registrar name, EPP status codes array, nameservers array, DNSSEC signed flag, a risk_score (integer), a risk summary string (e.g. 'clear'), and a flags object highlighting specific risk conditions (newly registered, on hold, expiring soon).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Bare registrable domain, e.g. example.com (no scheme, no path)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": "clear",
  "flags": {},
  "domain": "coinbase.com",
  "created": "2007-05-16T22:29:47Z",
  "expires": "2027-05-16T22:29:47Z",
  "age_days": 7050,
  "statuses": [
   "client transfer prohibited"
  ],
  "available": false,
  "registrar": "MarkMonitor Inc.",
  "registered": true,
  "risk_score": 0,
  "nameservers": [
   "ns1.example-dns.com"
  ],
  "dnssec_signed": false,
  "days_to_expiry": 252
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-domain-intelligence-rdap-34cd8dfe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
