# Regional Price Monitor (`oliverostech/regional-price-monitor`) Actor

Track price & stock changes on mid-market and regional European retailers — the stores global trackers ignore. Built for EU sellers and AI shopping agents.

- **URL**: https://apify.com/oliverostech/regional-price-monitor.md
- **Developed by:** [Ricardo Oliveros](https://apify.com/oliverostech) (community)
- **Categories:** E-commerce, Automation, AI
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00 / 1,000 per product successfully checkeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Regional Price Monitor

**Track price & stock changes on mid-market and regional European retailers — the stores that global, US-centric price trackers ignore.**

Give it a list of product-page URLs and it returns, for each one: the current price, currency and stock status, whether the price changed since the last run, by how much (%), and a triggered **alert** when a move crosses your threshold, an item hits your target price, or a product goes out of stock. A persistent history is kept per product so changes are detected across runs.

Built for **EU e-commerce sellers and brands** doing competitor pricing and MAP monitoring — and callable as a tool by **AI shopping / price agents**.

---

### Why this instead of a generic Amazon tracker

If your competitors are local, your monitoring has to be local too. Global tools cover Amazon well but barely touch the regional and mid-market players that actually drive pricing in French, DACH, Nordic and Benelux markets. This Actor focuses on those retailers and correctly handles **European number formats** (e.g. `1.234,56 €`) that US-built tools routinely misread.

It reads prices from the **structured data** that modern retailers publish (schema.org / JSON-LD, microdata, Open Graph), so it works across a wide range of mid-market shops out of the box — for example **materiel.net, LDLC, TopAchat** and many similar European retailers.

> Note: a few tier-1 retailers protect their pages with aggressive anti-bot systems and may not be reachable. This Actor is purpose-built for the large, underserved mid-market segment, not for fighting enterprise-grade bot walls. Pages it cannot read are reported clearly and **never charged**.

### What you get (output per URL)

| Field | Description |
|---|---|
| `price`, `currency` | Current price and ISO currency code |
| `in_stock` | `true` / `false` / `null` if unknown |
| `price_changed`, `change_pct` | Whether price moved past your threshold, and the signed % change |
| `previous_price`, `changed_at` | Last known price and when it last changed |
| `first_seen` | `true` the first time a URL is checked |
| `alert`, `alert_reason` | Fires on threshold move, target price, or out-of-stock |
| `price_history` | The last N observations (configurable) |
| `product_title`, `is_live`, `http_status`, `error` | Context and diagnostics |

#### Example record

```json
{
  "url": "https://www.materiel.net/produit/202404260002.html",
  "checked_at": "2026-06-09T16:20:51Z",
  "is_live": true,
  "http_status": 200,
  "currency": "EUR",
  "price": 926.95,
  "in_stock": false,
  "first_seen": false,
  "price_changed": true,
  "previous_price": 999.95,
  "change_pct": -7.30,
  "changed_at": "2026-06-09T16:20:51Z",
  "alert": true,
  "alert_reason": "price dropped 7.3% (999.95 -> 926.95); out of stock",
  "product_title": "MSI GeForce RTX 4070 Ti SUPER VENTUS 2X OC",
  "price_history": [
    { "price": 999.95, "currency": "EUR", "in_stock": true, "checked_at": "2026-06-08T16:20:00Z" },
    { "price": 926.95, "currency": "EUR", "in_stock": false, "checked_at": "2026-06-09T16:20:51Z" }
  ],
  "error": null
}
````

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `productUrls` | string list | — | Product-page URLs to monitor (press Enter after each one) |
| `alertThresholdPercent` | integer | `5` | Ignore price moves smaller than this percentage |
| `targetPrice` | string | — | Optional. Alert when price ≤ this value (use `.` for decimals) |
| `priceHistoryLimit` | integer | `30` | How many recent observations to keep per product |
| `proxyConfiguration` | proxy | Residential | Residential proxy recommended — retailers block datacenter IPs |

### How it works

1. Loads each page in a **real browser** (so client-rendered prices appear) through a **residential proxy**.
2. Blocks images, fonts, media and third-party trackers before loading — pages load faster and cost less.
3. Extracts price, currency and stock from **structured data** in priority order: JSON-LD (`schema.org/Product`) → microdata → Open Graph → a visible-text fallback that understands European number formats.
4. Compares against the **persistent price history** (a named Key-Value Store that survives across runs) to detect changes and fire alerts.
5. Charges **only on a successful price retrieval** — blocked, failed, or price-less pages cost you nothing.

### Use it from an AI agent

The input schema is self-describing, so AI shopping and price-comparison agents can discover and call this Actor to check live prices and stock before recommending or buying.

### Scheduling & alerts

Run it on an Apify **schedule** (e.g. hourly or daily) to build history and catch drops. Point a webhook at the dataset to push changes/alerts into your own systems.

### Pricing

Pay-per-event: you are billed **$0.02 per product successfully checked**. Pages that are blocked, unreachable, or have no detectable price are **not charged**. Platform costs (proxy and compute) are included — no surprise usage fees.

***

Maintained by **Oliverostech**.

# Actor input Schema

## `productUrls` (type: `array`):

List of product-page URLs to check. Each URL must point to a single product page on a mid-market / regional European retailer (works well with stores that publish structured product data, e.g. materiel.net, LDLC, TopAchat). The Actor returns one result object per URL. Tip: strip tracking query parameters (e.g. ?gclid=, utm\_\*) so the same product is tracked under a stable key across runs.

## `alertThresholdPercent` (type: `integer`):

Minimum absolute price-change percentage (vs the last stored price) required to mark price\_changed=true and raise an alert. Smaller moves are recorded but not flagged. Set to 0 to flag every change. Default 5.

## `targetPrice` (type: `string`):

Optional numeric value. When the observed price is at or below this value, the result's alert flag is set with reason 'at/below target'. Enter a plain number using a dot as decimal separator, e.g. 299.99.

## `priceHistoryLimit` (type: `integer`):

Maximum number of most-recent price observations kept per product in the persistent history and returned in the price\_history array. Default 30.

## `proxyConfiguration` (type: `object`):

Residential proxy is strongly recommended and used by default: retailers block datacenter IPs. Leave as-is to use Apify Residential.

## Actor input object example

```json
{
  "productUrls": [
    "https://www.materiel.net/produit/202404260002.html",
    "https://www.ldlc.com/fiche/PB00592347.html"
  ],
  "alertThresholdPercent": 5,
  "priceHistoryLimit": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "productUrls": [
        "https://www.materiel.net/produit/202404260002.html"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("oliverostech/regional-price-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "productUrls": ["https://www.materiel.net/produit/202404260002.html"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("oliverostech/regional-price-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "productUrls": [
    "https://www.materiel.net/produit/202404260002.html"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call oliverostech/regional-price-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=oliverostech/regional-price-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Regional Price Monitor",
        "description": "Track price & stock changes on mid-market and regional European retailers — the stores global trackers ignore. Built for EU sellers and AI shopping agents.",
        "version": "0.0",
        "x-build-id": "9AeVyHk9DPUpXOEIA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/oliverostech~regional-price-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-oliverostech-regional-price-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/oliverostech~regional-price-monitor/runs": {
            "post": {
                "operationId": "runs-sync-oliverostech-regional-price-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/oliverostech~regional-price-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-oliverostech-regional-price-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "productUrls"
                ],
                "properties": {
                    "productUrls": {
                        "title": "Product URLs",
                        "type": "array",
                        "description": "List of product-page URLs to check. Each URL must point to a single product page on a mid-market / regional European retailer (works well with stores that publish structured product data, e.g. materiel.net, LDLC, TopAchat). The Actor returns one result object per URL. Tip: strip tracking query parameters (e.g. ?gclid=, utm_*) so the same product is tracked under a stable key across runs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "alertThresholdPercent": {
                        "title": "Alert threshold (%)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Minimum absolute price-change percentage (vs the last stored price) required to mark price_changed=true and raise an alert. Smaller moves are recorded but not flagged. Set to 0 to flag every change. Default 5.",
                        "default": 5
                    },
                    "targetPrice": {
                        "title": "Target price (optional)",
                        "type": "string",
                        "description": "Optional numeric value. When the observed price is at or below this value, the result's alert flag is set with reason 'at/below target'. Enter a plain number using a dot as decimal separator, e.g. 299.99."
                    },
                    "priceHistoryLimit": {
                        "title": "Price history length",
                        "minimum": 1,
                        "maximum": 365,
                        "type": "integer",
                        "description": "Maximum number of most-recent price observations kept per product in the persistent history and returned in the price_history array. Default 30.",
                        "default": 30
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential proxy is strongly recommended and used by default: retailers block datacenter IPs. Leave as-is to use Apify Residential.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
