# Email Compliance at Domain Change Watch

> Email Compliance at Domain Change Watch is a paid API for AI agents from email.intel.rallylive.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Runs an email compliance check for a domain, compares the result against the previous call (retained 90 days), and returns current compliance state plus any changed fields with before/after values.

## Facts

- Endpoint: GET https://email.intel.rallylive.ca/watch/email/role/compliance
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/email-compliance-at-domain-change-watch-8ded9996
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cpT7aXenq_XlL5RsVTSvB

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 email-compliance-at-domain-change-watch-8ded9996
```

Example prompt: Keep an eye on email compliance for acmecorp.com and let me know if anything changes — I want to see exactly what fields shifted and what the values were before and after.

## When to prefer this

Use this endpoint when you need to detect and be alerted to changes in email compliance configuration for a domain over time, rather than just a one-off check. It is ideal for scheduled monitoring workflows where you want to track drift, audit changes, or trigger downstream alerts only when something actually changes. Prefer it over a plain compliance check when continuity and change detection (with before/after diffs) are required.

## Known failure modes

- Domain not found or invalid — returns error or empty result
- No previous check exists for the domain (first call) — returns current result with changed=false or null comparison
- Domain has no email compliance records — returns compliant/empty state
- Rate limiting or payment failure — request rejected
- DNS lookup timeout — check may be incomplete or return partial data

## How this service works

Change watch for email compliance at domain: runs the check, compares it with the result from your previous call for the same domain (kept 90 days) and returns the current answer, changed true/false, the fields that changed with before/after values, and when it was last seen. Schedule it to be alerted when this changes. $0.02 per check.

## Output

Returns the current email compliance check result for the domain, a boolean 'changed' flag indicating whether the result differs from the previous call, a list of fields that changed with their 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/email-compliance-at-domain-change-watch-8ded9996/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from email.intel.rallylive.ca](https://www.zero.xyz/host/email.intel.rallylive.ca/llms.txt)
