# Domain Risk Report

> Domain Risk Report is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Performs a comprehensive fraud and phishing risk assessment of a domain, covering age, DNS/mail hygiene, HTTPS, DNSBL, typosquatting signals, and an overall risk level.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/risk-report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/domain-risk-report-ed92a4d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fcFxQbDoGWl1xWuxo_fZ4

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-risk-report-ed92a4d7
```

Example prompt: Can you run a full risk report on the domain acme-invoices.net before I open that payment link they sent me — I want to know if it's legit, how old it is, and whether its email security looks right?

## When to prefer this

Choose this endpoint when you need a holistic fraud and phishing risk verdict on a domain in a single call, combining DNS/mail hygiene, certificate, DNSBL, typosquatting hints, and domain age. Prefer it over a plain domain-trust-score when you need the raw signals and detailed reasons rather than just a score, or when you specifically need DNSBL blacklist status and homepage content inspection together.

## Known failure modes

- Domain not found or unresolvable — returns empty or error result
- Domain has no homepage (parked/inactive) — partial report with missing content fields
- DNSBL lookup timeout — DNSBL field may be absent or marked unavailable
- Invalid domain format in query — returns validation error
- Rate limiting if many calls are made rapidly

## How this service works

Domain risk report for fraud and phishing screening: domain age and expiry, typosquat-of-brand hints, DNS and mail hygiene (SPF/DMARC/MX), HTTPS and certificate, homepage presence and content, trackers, DNSBL listing of the site's IP, and an overall risk level with reasons. Vet a counterparty or a link before trusting it. $0.01 per domain.

## Output

Returns a structured risk report including: domain age and expiry date, typosquatting-of-brand signals, DNS hygiene (MX, SPF, DMARC presence and validity), HTTPS status and certificate details, homepage presence and content summary, third-party trackers detected, DNSBL listing status for the domain's IP, and an overall risk level (e.g. low/medium/high) with specific reasons explaining the assessment.

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/domain-risk-report-ed92a4d7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
