# NetIntel Domain Full Report

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

Returns a comprehensive intelligence report for a domain including DNS, SSL, WHOIS, security headers, CDN/WAF detection, and an overall security grade.

## Facts

- Endpoint: GET https://netintel.dev/domain-report/full
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-domain-full-report-dd857791
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mptXl-a0wRhK4MS78jLPT

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-domain-full-report-dd857791
```

Example prompt: Can you run a full domain intelligence report on stripe.com — I want to see its security grade, DNS records, SSL expiry, who registered it, and what CDN or WAF it's using?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional profile of a domain in a single call — covering DNS, SSL, WHOIS, security headers, CDN, and WAF all at once. Prefer this over narrow single-check endpoints when you need an overall grade and want to avoid making 5-6 separate API calls. Best for domain due diligence, vendor security assessments, or phishing/brand-impersonation investigations.

## Known failure modes

- Domain not found or unresolvable — returns empty or error sections
- Security headers section may timeout, returning available:false with an error detail
- Invalid domain format (missing TLD) — likely 400 or validation error
- Payment not processed — 402 response requiring USDC micropayment on Base mainnet
- Rate limiting or upstream DNS timeout causing partial section failures

## How this service works

One premium call returns a complete six-part domain profile — DNS records, SSL certificate, WHOIS registration, cloud fingerprint, technology stack, and security headers — each section run concurrently with graceful partial-failure handling, so agents get an entire domain workup in a single request instead of orchestrating six.

## Output

A JSON object with an overall letter grade (e.g. 'B') and numeric score (0-100), plus detailed sections for DNS (A/MX/NS/TXT records), SSL (issuer, expiry, days remaining), WHOIS (registrar, created/expires dates), CDN/WAF/server tech stack, cloud provider info, and security headers availability. Also includes a findings array listing any deductions or failures, plus counts of passing and failed sections.

## 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 to profile, including TLD (e.g. example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "sections": {
       "type": "object"
      },
      "sections_ok": {
       "type": "number"
      },
      "generated_at": {
       "type": "string"
      },
      "sections_failed": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "A",
  "score": 100,
  "domain": "example.com",
  "findings": [],
  "sections": {
   "dns": {
    "a_records": [
     "93.184.216.34"
    ],
    "available": true,
    "mx_records": [
     "mail.example.com"
    ],
    "ns_records": [
     "a.iana-servers.net"
    ],
    "txt_records": [
     "v=spf1 -all"
    ]
   },
   "ssl": {
    "issuer": "DigiCert Inc",
    "valid_to": "Feb 13 23:59:59 2027 GMT",
    "available": true,
    "days_until_expiry": 200
   },
   "tech": {
    "cdn": "Cloudflare",
    "cms": null,
    "waf": "Cloudflare WAF",
    "server": "Nginx",
    "available": true
   },
   "cloud": {
    "cdn": "Cloudflare",
    "grade": "A",
    "provider": "Cloudflare",
    "available": true,
    "dns_provider": "Cloudflare DNS"
   },
   "whois": {
    "available": true,
    "registrar": "MarkMonitor Inc.",
    "created_at": "1995-08-14T04:00:00Z",
    "expires_at": "2027-08-13T04:00:00Z",
    "days_until_expiry": 425
   },
   "security_headers": {
    "csp": false,
    "hsts": true,
    "grade": "B",
    "available": true
   }
  },
  "sections_ok": 6,
  "generated_at": "2026-06-16T01:00:00Z",
  "sections_failed": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-domain-full-report-dd857791/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)
