Intermediate5 steps

How to Monitor Competitor Websites

Staying aware of competitor pricing, product launches, and messaging changes requires checking multiple websites repeatedly. Manual monitoring doesn't scale — you need an automated pipeline that tracks changes and sends alerts.

Step-by-Step Guide

1

Define what to monitor

List the specific pages and data points to track: pricing pages, product catalogs, homepage messaging, job listings. Focused monitoring reduces noise and cost.

2

Establish a baseline snapshot

Fetch each page and store the current state of the data points you care about. This becomes your reference for detecting future changes.

3

Schedule recurring checks

Run your monitoring script on a schedule — hourly for pricing, daily for content. Compare each new fetch against your stored baseline.

4

Detect and classify changes

Compare new data against the baseline. Classify changes by type (price drop, new feature, messaging change) and severity.

5

Send alerts

Route change notifications to your preferred channel — Slack webhook, email, or your internal dashboard.

Code Example

import requests
import json
from pathlib import Path

def check_competitor(url: str, selector: str, api_key: str, state_file: str) -> dict:
    response = requests.post(
        "https://alterlab.io/api/v1/scrape",
        headers={"X-API-Key": api_key, "Content-Type": "application/json"},
        json={"url": url},
    )
    from bs4 import BeautifulSoup
    html = response.json().get("html", "")
    current = BeautifulSoup(html, "html.parser").select_one(selector)
    current_text = current.get_text(strip=True) if current else ""

    path = Path(state_file)
    previous = json.loads(path.read_text()).get("value") if path.exists() else None
    path.write_text(json.dumps({"value": current_text}))

    return {"changed": current_text != previous, "previous": previous, "current": current_text}

Replace YOUR_API_KEY with your key from the dashboard. No credit card required.

Ready to try it?

Run this tutorial on live websites with AlterLab's API. Start free — no credit card required.

Frequently Asked Questions

Responsible Use

AlterLab is designed for extracting publicly available data. Always review the terms of service for any website you access, respect robots.txt directives, and ensure your use case complies with applicable laws in your jurisdiction.

More tutorials

Browse all how-to guides for web scraping — from beginner extractions to advanced multi-page pipelines.

Your first scrape.
Sixty seconds.

$1 free balance. No credit card. No SDK.Just a POST request.

terminal
curl -X POST https://api.alterlab.io/v1/scrape \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown"]}'

No credit card required · Up to 5,000 free scrapes · Balance never expire

    How to Monitor Competitor Websites Automatically | AlterLab | AlterLab