curl -X POST https://api.verid.dev/v1/monitors \
-H "Authorization: Bearer vrd_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Pricing page visual guard",
"url": "https://yourapp.com/pricing",
"schedule_interval_seconds": 3600,
"fetch_mode": "browser",
"extract_config": { "method": "full_page" },
"diff_predicate": { "type": "field_changes", "field": "__visual_only__" },
"visual_config": {
"enabled": true,
"thresholdPct": 2,
"fullPage": false,
"viewport": { "width": 1440, "height": 900 },
"regions": [
{ "selector": "section.hero", "label": "Hero" },
{ "selector": "[data-testid=pricing-table]", "label": "Pricing table" }
],
"ignoreSelectors": [".cookie-wall", ".testimonial-carousel"]
},
"deliveries": [
{ "type": "webhook", "url": "https://api.yourapp.com/hooks/verid" }
]
}'