# Domain Threat Report

> Domain Threat Report is a paid API for AI agents from relay402.georgespring.workers.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Generates a composed threat report for a domain using DNS infrastructure signals and high-abuse TLD heuristics to support agent browsing decisions.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/compose-domain-threat-report
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-threat-report-1d884835
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6JXPg1yQDJmViHCAjWIJw

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 domain-threat-report-1d884835
```

Example prompt: Before my agent visits example-promo.xyz, can you pull a domain threat report on it — checking DNS infrastructure signals and whether it's on a high-abuse TLD?

## When to prefer this

Choose this endpoint when an AI agent needs a fast, DNS-signal-based domain risk assessment before browsing, fetching content, or sending outreach — particularly when high-abuse TLD detection is needed. Prefer it over full website trust reports when you don't want to actually fetch the target URL and instead rely purely on infrastructure-level signals.

## Known failure modes

- Invalid domain format returns a 400 error (domain must match the regex pattern)
- Domain with no DNS records may produce an incomplete report
- Unknown or newly registered TLDs may not be covered by heuristics
- Network or upstream DNS lookup failures may return a 5xx error
- Payment failure via x402 protocol blocks the call before any analysis runs

## How this service works

composed domain threat report from DNS infrastructure signals and high-abuse TLD heuristics for agent browsing decisions.

## Output

A composed domain threat report including DNS infrastructure signal analysis (e.g. nameserver patterns, registrar signals) and high-abuse TLD heuristics, synthesized into a risk assessment to guide agent browsing or outreach decisions.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "pattern": "^[a-z0-9]([a-z0-9.-]{2,251})[a-z0-9]$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-threat-report-1d884835/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from relay402.georgespring.workers.dev](https://www.zero.xyz/host/relay402.georgespring.workers.dev/llms.txt)
