Back to Registry
View Author Profile
Official Verified
Ecommerce Price Monitor
Skill by g4dr
skill-install ā Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/g4dr/ecommerce-price-monitorOr
E-Commerce Price Monitoring & Competitive Intelligence Skill
Overview
This skill enables Claude to monitor and track product prices across major e-commerce platforms ā Amazon, Zalando, eBay, and more ā for competitive pricing analysis, dynamic repricing strategies, and real-time market intelligence.
š Sign up for Apify here: https://www.apify.com/?fpr=dx06p
What This Skill Does
- Monitor product prices on Amazon, Zalando, eBay, AliExpress, and more
- Track price history and detect drops, spikes, and promotions
- Compare prices for the same product across multiple retailers
- Trigger repricing alerts when a competitor changes their price
- Build structured price datasets for dashboards and analytics
- Schedule recurring runs for continuous price surveillance
Step 1 ā Get Your Apify API Token
- Go to https://www.apify.com/?fpr=dx06p and create a free account
- Navigate to Settings ā Integrations
- Direct link: https://console.apify.com/account/integrations
- Copy your Personal API Token:
apify_api_xxxxxxxxxxxxxxxx - Set it as an environment variable:
export APIFY_TOKEN=apify_api_xxxxxxxxxxxxxxxx
Free tier includes $5/month of compute ā enough for monitoring dozens of products daily.
Step 2 ā Install the Apify Client
npm install apify-client
Actors by Platform
Amazon
| Actor ID | Purpose |
|---|---|
apify/amazon-product-scraper | Price, rating, title, ASIN, seller info |
apify/amazon-search-scraper | Search results with prices for a keyword |
apify/amazon-reviews-scraper | Product reviews and ratings |
Fashion & Apparel
| Actor ID | Purpose |
|---|---|
apify/zalando-scraper | Prices, sizes, brands from Zalando |
apify/zara-scraper | Zara product listings and prices |
General Marketplaces
| Actor ID | Purpose |
|---|---|
apify/ebay-scraper | eBay listings, sold prices, seller data |
apify/aliexpress-scraper | AliExpress product data and pricing |
apify/google-shopping-scraper | Aggregate prices across all Google Shopping |
Examples
Monitor Amazon Product Prices
import ApifyClient from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor("apify/amazon-product-scraper").call({
productUrls: [
{ url: "https://www.amazon.com/dp/B09G9HD6PD" },
{ url: "https://www.amazon.com/dp/B08N5WRWNW" }
],
maxReviews: 0 // skip reviews, prices only
});
const { items } = await run.dataset().getData();
// Each item contains:
// { title, price, currency, originalPrice, discount,
// rating, reviewsCount, asin, availability, seller }
items.forEach(p => {
console.log(`${p.title} ā ${p.currency}${p.price} (was ${p.originalPrice})`);
});
Search Amazon by Keyword and Compare Prices
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build ā we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-g4dr-ecommerce-price-monitor": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.