Universal Price & Stock Monitor
Pricing
from $3.00 / 1,000 product results
Universal Price & Stock Monitor
Track price and stock status on any webshop via schema.org JSON-LD β no per-site setup, with optional cross-run change detection.
Pricing
from $3.00 / 1,000 product results
Rating
0.0
(0)
Developer
Dennis
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Universal Price & Stock Monitor π·οΈ
Track price and stock status on any webshop β not just one platform. Give it a list of product page
URLs and it extracts price, currency and availability directly from the page's own schema.org structured
data (the same Product/Offer JSON-LD most modern e-commerce sites already publish for Google Rich
Results). No per-site setup, no API keys, no login.
Optional cross-run change detection tells you exactly what moved: new listing, price change, or a back-in-stock/out-of-stock flip β compared against the same URL's result from the last run.
Why this monitor?
Most price-tracking actors are built for one specific platform, or rely on fragile CSS selectors that break on every redesign. This one reads the structured data that shops themselves publish for search engines β more robust, and it works on virtually any modern webshop, regardless of platform:
- π Platform-independent β works on any shop that publishes
schema.org Product/OfferJSON-LD, not just one specific e-commerce platform - π§± Robust by design β reads standardized structured data instead of CSS classes, so it doesn't break on a visual redesign the way a selector-based scraper would
- π Change detection β every record can be annotated
new,price_change,back_in_stock,out_of_stockorunchanged, including the previous price and % change - π Handles multiple price shapes β a fixed price (
Offer) or a price range from multiple sellers (AggregateOffer, common on marketplaces) are both normalized into one flat structure - π‘οΈ Fails per URL, not per run β one blocked or JSON-LD-less page never stops the rest of the batch
- π§Ύ Clean, flat JSON β no nested blobs, ready for spreadsheets, BI tools or AI agents (MCP)
When should an AI agent use this?
- "Did the price of [product URL] change since yesterday?"
- "Is [product] currently in stock at [shop.example.com]?"
- "Check these 20 product URLs and tell me which ones dropped in price."
- "Is this listing still available, or has it been discontinued?"
- "Monitor my top 5 competitor product pages and alert me on any price move."
- "What's the current price range for [product] across these marketplace listings?"
What data do you get?
One record per product URL:
{"url": "https://www.example-shop.com/products/wireless-headphones","productName": "Wireless Noise-Cancelling Headphones","schemaType": "Product","price": 219,"priceMin": null,"priceMax": null,"currency": "EUR","availability": "in_stock","sku": "969421","foundJsonLd": true,"error": null,"checkedAt": "2026-09-03T16:01:22.529Z","changeType": "price_change","previousPrice": 249,"priceChangePercent": -12.05}
On a marketplace-style page with multiple sellers (ProductGroup/AggregateOffer β no single fixed
price), price is null and priceMin/priceMax are filled instead:
{"url": "https://www.example-marketplace.com/p/wireless-headphones/123456","productName": "Wireless Noise-Cancelling Headphones","schemaType": "ProductGroup","price": null,"priceMin": 129,"priceMax": 217.5,"currency": "EUR","availability": "unknown"}
If a page has no usable Product/ProductGroup JSON-LD, foundJsonLd is false (not an error) β the
actor reports this per URL instead of failing the run.
Use cases
- Competitive price intelligence β track competitor product pages across any number of different shops
- MAP / brand compliance β verify resellers respect a minimum advertised price, regardless of which platform they sell on
- Deal hunting & arbitrage β schedule daily runs and alert only on real price drops
- Availability monitoring β know the moment a sold-out item is back in stock
- Marketplace price-range tracking β watch the low/high price spread on multi-seller listings
- AI agents & dashboards β clean structured JSON, ideal for LLM tools (MCP), Google Sheets or BI pipelines
Quick start
Check current price/stock for a handful of products:
{ "productUrls": ["https://www.example-shop.com/products/wireless-headphones"] }
Daily price-alert monitoring:
{"productUrls": ["https://shopA.example.com/product/1","https://shopB.example.com/product/2"],"trackChanges": true,"minPriceChangePercent": 2}
Schedule this daily: the first run establishes a baseline (changeType: "new" for every URL), every next
run reports only genuine changes. Wire it to Slack, e-mail or Google Sheets via Apify integrations.
Input reference
| Field | Description |
|---|---|
productUrls | Product page URLs to check (required, up to 500 per run) |
maxConcurrency | How many pages to fetch in parallel (default 3) |
trackChanges | Compare each result against the same URL's result from the last run. Only meaningful on a scheduled actor β a one-off run always reports new (nothing to compare against yet) |
minPriceChangePercent | With trackChanges on: a price move smaller than this percentage is recorded as unchanged instead of price_change (filters out currency-rounding noise) |
Pricing
Pay per event: regular checks are billed at the base rate; a genuinely detected change
(price_change/back_in_stock/out_of_stock) is billed at a slightly higher rate β you pay for insight,
not bulk. A first/baseline run (changeType: "new") is always billed at the base rate.
product-result: $0.003 per checked URL (base data β includes the firstnewsighting of a URL)price-alert: $0.01 per URL, only for a genuinely detectedprice_change,back_in_stockorout_of_stock(requirestrackChanges: trueand a previous run to compare against)
Run summary
A RUN_SUMMARY object (checked/alert/error counts) is written to the actor's key-value store after every
run, and is also pushed as the last item in the dataset (marked "recordType": "run_summary", easy to
filter out) β so no-code integrations (Zapier, Make, Google Sheets) that only read the dataset see it too,
without an extra API call. No extra charge.
Reliability notes
- Reads
schema.orgstructured data (application/ld+json), the same data shops publish for Google Rich Results β far more stable across redesigns than CSS-selector scraping - A page without usable Product/ProductGroup JSON-LD is reported as
foundJsonLd: false, not an error β some shops or individual pages simply don't publish this data - A blocked or unreachable URL (HTTP error, network failure, bot protection) is reported per URL with an
errormessage and never fails the rest of the run - Product/price/stock data only β no personal data is collected, so GDPR exposure is minimal
- Because this actor works on any URL you supply, it cannot pre-verify every possible target site's terms of service β you're responsible for only monitoring pages you're permitted to access. This actor only reads publicly accessible pages (no login, no CAPTCHA bypass, no paywall circumvention)
FAQ
Does it work on every webshop? Any shop that publishes schema.org Product or ProductGroup JSON-LD β
which is the large majority of modern e-commerce platforms (implemented for SEO/Google Rich Results). A page
without it is reported as foundJsonLd: false.
What if a shop uses multiple sellers/offers for one product? The actor reads the first offer, or β for
an AggregateOffer (e.g. marketplace listings with several sellers) β the low/high price range instead of a
single price.
Does trackChanges work on a one-off run? It needs a previous run to compare against, so a single manual
run always reports every URL as new. Schedule the actor to get ongoing change detection.
Where is the change history stored? A compact snapshot (price, availability, timestamp) per monitored URL lives in the actor's key-value store; each run compares against it and updates it.
Related Actors
Also by this developer:
- Shopify Product & Price Monitor β same change-detection value, deeper Shopify-specific data (variants, tags, sale detection via compare-at price) via Shopify's own product API. Use that one if every store you monitor is Shopify-powered; use this actor when your target list spans different platforms.
Keywords: price tracker, price monitor, stock monitor, price drop alert, competitor price tracking, schema.org product data, JSON-LD price extraction, e-commerce intelligence, MAP monitoring, universal webshop scraper.
Keywords
price monitor, price tracker, stock monitor, availability tracker, schema.org, json-ld, structured data, e-commerce, competitor pricing, MAP compliance, deal alert, price drop, universal scraper
Changelog
0.2.0
- Now also reads Product data nested under a
BuyAction.objectwrapper (found live on MediaMarkt.nl) β previously only a top-levelProduct/ProductGroupnode was recognized. No pricing change.
0.1.0 - Initial release
- Extracts price, currency, availability and SKU from
schema.org Product/OfferJSON-LD on any product page, plusProductGroup/AggregateOffer(multi-seller price ranges) - Normalizes both string and numeric price representations, and both bare and full-URI availability tokens
- Optional cross-run change detection (
trackChanges) via a named key-value-store snapshot:new,price_change,back_in_stock,out_of_stock,unchanged minPriceChangePercentnoise threshold for price-change alerts- Pay-Per-Event pricing with separate
product-resultandprice-alertevents