# NetIntel Domain Full Report

> NetIntel Domain Full Report is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns a comprehensive intelligence report on a domain, including DNS records, SSL certificate, technology stack, cloud/CDN provider, WHOIS data, and security headers, with an overall grade and score.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/domain-report/full
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-domain-full-report-504ce2c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xMafncfkuUDTzwYatY01r

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-504ce2c7
```

Example prompt: Can you run a full domain intelligence report on stripe.com — I want to see its DNS records, SSL cert, CDN and WAF, WHOIS info, security headers, and an overall security grade?

## When to prefer this

Use this endpoint when you need a single comprehensive snapshot of a domain's full infrastructure posture — DNS, SSL, tech stack, CDN/WAF, WHOIS, and security headers — in one call rather than querying each aspect separately. Ideal for security audits, vendor due diligence, threat intelligence, or competitive research where a graded summary with actionable findings is more useful than raw data.

## Known failure modes

- Missing or invalid 'domain' query parameter returns an error
- Domain does not exist or is unreachable causes DNS section to fail
- SSL check times out or host has no HTTPS — ssl section marked unavailable
- Security headers check times out — section marked failed with timeout error and zero deduction
- WHOIS data unavailable for certain TLDs or private registrations
- Payment not included or invalid — HTTP 402 returned requiring x402 USDC micropayment on Base mainnet

## 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 containing an overall letter grade (e.g. 'B') and numeric score (0-100), the queried domain, a list of findings with rule violations and deductions, and a sections object with sub-reports for DNS (A/MX/NS/TXT records), SSL (issuer, expiry, days remaining), tech stack (CDN, CMS, WAF, server), cloud/CDN provider, WHOIS (registrar, creation/expiry dates), and security headers. Also includes counts of sections that succeeded or failed and a generation timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "example.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 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-504ce2c7/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)
