Skip to documentation content

Practical examples

Reusable patterns for common web-data workflows.

In this guide
  1. 1Monitor prices
  2. 2Create a daily feed
  3. 3Trigger a change alert
In this guide
  1. 1Monitor prices
  2. 2Create a daily feed
  3. 3Trigger a change alert

Monitor product prices

Collect product pages on a schedule, normalize currency and availability, and emit an event only when a validated price changes.

Sandbox request
curl -X POST /api/fake/v1/scrape -H "Content-Type: application/json" -d '{"url":"https://example.com/products","formats":["json"]}'

Build a daily dataset

Request a full snapshot, reconcile by stable record ID, and store the delivery version with your import job.

Trigger an operational alert

Send verified change events to a webhook, deduplicate by event ID, enrich the record, and route the alert to the responsible team.

Was this page helpful?