# domain-risk-report-watch

> domain-risk-report-watch is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Monitors a domain's fraud and phishing risk report for changes, returning current results, a changed flag, and field-level before/after diffs compared to the previous check (retained 90 days).

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/risk-report
- Price: $0.02/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-watch-0f71be7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G10LCd-PcKaQOxWcviv2e

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-watch-0f71be7e
```

Example prompt: Check if the fraud and phishing risk report for example.com has changed since the last time you checked — show me what changed, the before and after values, and when it was last seen.

## When to prefer this

Choose this endpoint when you need to continuously monitor a specific domain's fraud and phishing risk posture over time and only want to act when something actually changes. It is superior to a plain risk-report lookup when you need change detection with field-level diffs rather than just the current state, and when you want to avoid processing unchanged results. Ideal for scheduled agent workflows, alerting pipelines, or compliance monitors that need an audit trail of when domain risk indicators shifted.

## Known failure modes

- Domain parameter missing or malformed — returns validation error
- No previous result exists for comparison (first call) — returns current result with changed=false or null diff
- Domain not found or unreachable — risk report may return empty or error state
- Previous result expired beyond 90-day retention window — treated as first call with no baseline
- Service unavailable or upstream intelligence feed down — may return error or stale data
- Payment not processed — x402 payment required, call rejected without valid payment

## How this service works

Change watch for domain risk report: runs the check and compares it with the result from your previous call for the same domain (kept 90 days), returning the current answer, changed true/false, exactly which fields changed with before/after values, and when it was last seen. Call it on a schedule to be told when domain risk report for fraud and phishing screening changes. $0.01 per check.

## Output

Returns the current domain risk report result, a boolean 'changed' flag indicating whether the report differs from the previous call, a field-level diff showing exactly which fields changed with before and after values, and the timestamp of when the domain was last seen. Previous results are retained for 90 days for comparison.

## 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-watch-0f71be7e/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)
