Dan EWebsite change monitoring inside Rendex: watch any URL and get a real-Chrome before/after visual diff with an overlay, plus email or webhook alerts.
Rendex Watch is live. It monitors any URL on a schedule and shows you a real-Chrome before and after visual diff with a highlighted overlay, so you see exactly which part of the page changed, not just that something did. It runs inside the same platform as the rest of Rendex: one rdx_ key, one shared credit pool, one bill, alongside screenshots, PDF, and content extraction.
Most uptime checks tell you the server returned a 200. They stay green while a deploy blanks a section, a price flips, a cookie banner covers the page, or a third-party script wipes the layout. Watch captures the rendered page on a schedule, compares each check against a stored baseline, and alerts you by email or webhook when the page actually changes.
Point a watch at a URL and pick how it should detect change: a visual diff (a real Chrome render, compared pixel by pixel), a text diff (the extracted page text), or both. When a check crosses your threshold, Rendex stores the before frame, the after frame, and an overlay that rings the changed regions in orange, then fires your alerts. The change notification carries the before, after, and overlay images, so the alert itself shows what moved.
The full surface is available the day it ships: a REST API under /v1/watches, the JavaScript and Python SDKs, the Rendex MCP server for AI agents, a native n8n node, and a Zapier app. See the Rendex Watch overview for the product tour, or the Watch API reference for every parameter.
Text and DOM diffs miss anything that breaks visually without changing the markup: a CSS regression, an image that fails to load, a font swap, a layout shift from an ad slot, a render that white-screens on a JavaScript error. A real-browser visual diff catches those because it compares what the page actually drew. The overlay then tells you where to look instead of leaving you to hunt through a full-page screenshot. For monitors built around content rather than layout, the text diff runs in the same check.
A watch is one POST to /v1/watches. Pass the URL, how it should detect change (diffMode is visual, text, or both), and how often to check (intervalMinutes). The optional threshold is a 0 to 1 noise floor the visual diff must exceed before a check counts as changed.
# Get your API key at rendex.dev/login
curl -X POST https://api.rendex.dev/v1/watches \
-H "Authorization: Bearer rdx_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/pricing",
"name": "Competitor pricing",
"diffMode": "both",
"intervalMinutes": 180,
"threshold": 0.02,
"webhookUrl": "https://your.app/hooks/rendex"
}'
The first check establishes the baseline. Every check after that compares against it, and the baseline advances when a real change is confirmed, so you are always measuring against the most recent known-good frame. Each scheduled check is one render credit from the same pool your screenshots and PDFs draw on.
The JavaScript and Python SDKs wrap the same endpoint. The JS SDK exposes createWatch, listWatches, getWatch, updateWatch, deleteWatch, runWatch, listWatchRuns, and testWatch; the Python SDK ships the snake_case equivalents.
// npm install @copperline/rendex
import { Rendex } from "@copperline/rendex";
const rendex = new Rendex("rdx_YOUR_KEY");
const watch = await rendex.createWatch({
url: "https://example.com/pricing",
diffMode: "both",
intervalMinutes: 180,
threshold: 0.02,
webhookUrl: "https://your.app/hooks/rendex",
});
console.log(watch.id);
For no-code and agent workflows, the surface is native. The Rendex MCP server adds watch_create, watch_list, watch_get, watch_run, watch_test, watch_runs, and watch_delete so an AI agent can set up and read monitors. The n8n node adds a Watch resource and a "Rendex Watch Trigger" that starts a workflow when a page changes, and the Zapier app adds the same actions plus a "Website Changed" trigger. Want to see what Rendex captures for a URL before you commit a watch? The Preview a Website Watch tool runs a one-time capture in the browser.
Email alerts work on every plan. Signed webhooks are available from the Starter tier and up. On a change, Rendex POSTs an HMAC-signed watch.changed event (with watch.recovered and watch.error for the recovery and failure transitions). The payload carries the change magnitude and signed image URLs.
{
"event": "watch.changed",
"watchId": "8f3c...",
"url": "https://example.com/pricing",
"changed": true,
"diffScore": 0.067,
"diffPixels": 48210,
"beforeUrl": "https://rendex.dev/i/...signed",
"afterUrl": "https://rendex.dev/i/...signed",
"diffOverlayUrl": "https://rendex.dev/i/...signed"
}
Verify the signature before you trust the body. The JS and Python SDKs ship a verifyWebhook helper that checks the HMAC against your signing secret. The same signing scheme backs the async render webhooks, documented in the webhooks reference. To clear or replace an alert channel later, send an updateWatch call. The SDK reference lists every method.
Watch counts and check frequency scale with your plan: Free monitors 1 page on a daily check, Starter 10 pages as often as every 3 hours, Pro 50 pages as often as every 30 minutes, and Enterprise 1,000 pages as often as every 5 minutes (counts are total, active plus paused). Geo-targeted checks, which render the page from a chosen country, are on Pro and Enterprise. There is no overage: if your credit pool runs out, the watch pauses rather than billing past the cap, and you resume it when you top up.
A note on what is not here yet: the AI "what changed" written summary is on the roadmap, not shipped. Today the change event gives you the visual overlay, the change magnitude, and the text diff, which is enough to route and triage. For a feature-by-feature look at how Watch compares to standalone monitors, see the best website monitoring tools roundup.
If you already use Rendex for screenshots or PDF, Watch needs no new account, key, or bill: it draws from the same credit pool. Create your first watch from the Rendex Watch page or jump straight into the dashboard.
Start for free at rendex.dev/login. The free tier includes 1 watch on a daily check, with email alerts, alongside 500 render calls a month. No credit card required.