# NetIntel Domain Report Analyze

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

Generates a comprehensive security and intelligence report for a domain, covering DNS, SSL, WHOIS, technology stack, and blacklist status with an overall risk grade.

## Facts

- Endpoint: GET https://netintel.dev/domain-report/analyze
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-domain-report-analyze-4b7e350c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CUnlcEyy90fb3nH-_joED

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-report-analyze-4b7e350c
```

Example prompt: Can you run a full domain intelligence report on suspicious-site.com — I need its DNS records, SSL status, WHOIS info, tech stack, and whether it's blacklisted, plus an overall risk grade?

## When to prefer this

Use this endpoint when you need a holistic, multi-dimensional domain intelligence report in a single call — covering DNS, SSL, WHOIS, tech stack, and blacklist simultaneously. Prefer it over individual DNS or WHOIS lookup APIs when you need a risk score and grade. Ideal for security triage, vendor vetting, phishing investigation, or pre-engagement domain due diligence.

## Known failure modes

- Invalid or non-existent domain returns error or empty sections
- Domain lookup timeout causes partial data with available:false on some sections
- Blacklist check may return limited results if fewer than 5 lists are reachable
- WHOIS data unavailable for some TLDs or privacy-protected registrations
- Payment failure via x402/USDC results in 402 response before any data is returned

## How this service works

One call returns a complete intelligence profile for a domain — WHOIS registration, DNS records, SSL certificate, detected tech stack, and blacklist status — aggregated into a single risk-scored report so agents can fully vet a domain without orchestrating five separate lookups.

## Output

Returns a JSON object with: overall_score (0-100), letter grade (e.g. 'B'), risk_level (e.g. 'low'), resolved IP, and detailed sections for DNS (A/MX/NS/TXT records), SSL (issuer, validity dates, days until expiry), WHOIS (registrar, creation/expiry dates, status), technology (CDN, WAF, CMS, server), and blacklist (lists checked, listed_on, listed_count).

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "A",
  "domain": "example.com",
  "findings": [
   {
    "rule": "section_ok",
    "detail": "All five checks completed",
    "deduction": 0
   }
  ],
  "sections": {
   "dns": {
    "a_records": [
     "93.184.216.34"
    ],
    "available": true,
    "mx_records": [
     "mail.example.com"
    ],
    "ns_records": [
     "a.iana-servers.net",
     "b.iana-servers.net"
    ],
    "txt_records": [
     "v=spf1 -all"
    ]
   },
   "ssl": {
    "issuer": "DigiCert Inc",
    "valid_to": "2025-01-01T00:00:00Z",
    "available": true,
    "san_count": 3,
    "valid_from": "2024-01-01T00:00:00Z",
    "days_until_expiry": 200
   },
   "tech": {
    "cdn": "Cloudflare",
    "cms": null,
    "waf": "Cloudflare WAF",
    "server": "ECS",
    "available": true
   },
   "whois": {
    "status": [
     "client transfer prohibited"
    ],
    "available": true,
    "registrar": "MarkMonitor Inc.",
    "created_at": "1995-08-14T04:00:00Z",
    "expires_at": "2025-08-13T04:00:00Z",
    "days_until_expiry": 425
   },
   "blacklist": {
    "available": true,
    "listed_on": [],
    "listed_count": 0,
    "lists_checked": 5
   }
  },
  "risk_level": "low",
  "resolved_ip": "93.184.216.34",
  "overall_score": 100
 }
}
```

## More

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