# Morele Scraper — Poland Electronics Prices & Ratings (`logiover/morele-poland-product-scraper`) Actor

Scrape Morele.net, a major Polish electronics retailer. Extract product name, price in zloty, buyer rating and review count, product ID, category and image across computing, components, phones and home appliances. Category browsing and keyword search. No API key.

- **URL**: https://apify.com/logiover/morele-poland-product-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## Morele Scraper — Poland Electronics Prices & Ratings

Polish electronics prices with the buyer ratings that go with them — and pagination that actually reaches page two.

### What does the Morele Scraper do?

This Actor collects live product data from **Morele.net**, a major Polish electronics retailer covering computing, components, phones and home appliances. Products come from the page's JSON-LD, complete with the aggregate rating Polish shoppers sort by.

Its pagination is the part worth knowing about. The page number is a path segment inside a comma-delimited filter string, so `?page=2` is ignored and — more dangerously — the plain `/kategoria/<slug>/2/` form is accepted and silently re-serves page one. Only `/kategoria/<slug>/,,,,,,,,0,,,,/2/` moves the window, which is the form this Actor builds. Brand, stock status and EAN are absent from the markup, so no columns are claimed for them.

### Who is it for?

- **Brands and distributors** monitoring Polish electronics pricing.
- **Competitive-pricing teams** in one of the EU's largest electronics markets.
- **Price-comparison services** seeding a Polish catalogue.
- **Market researchers** tracking component and hardware prices.
- **Resellers** hunting under-priced stock across categories.

### Use cases

- Track laptop and component prices weekly across the categories you sell into.
- Rank a category by review count to find what actually sells.
- Watch price movement around Polish promotion periods.
- Compare rating distribution between brands in the same category.
- Feed a repricing engine a daily Polish market snapshot.
- Give an AI agent live Polish electronics prices for comparison questions.

### Why use this Morele Scraper?

- **Pagination that genuinely paginates** — the two silent page-one traps are handled.
- **30 products per page** with prices at 100% fill.
- **Buyer ratings and review counts** where Morele has them.
- **Category browsing and keyword search**, either one.
- **Keyless and login-free** — nothing to register, nothing to rotate.
- **No invented columns** — brand and EAN are not in the markup, so they are not claimed.

### What data can you extract?

One row per product. Anything the source left blank comes back as `null`.

| Field | Type | Description |
|---|---|---|
| `productId` | string | Morele product identifier from the URL |
| `url` | string | Direct link to the product |
| `name` | string | Product name |
| `price` | number | Price in Polish zloty |
| `currency` | string | Currency, normally PLN |
| `rating` | number | Average buyer rating |
| `reviewCount` | number | Number of reviews |
| `category` | string | Category slug requested |
| `imageUrl` | string | Product photo |
| `scrapedAt` | string | When this row was collected |

#### Sample output

```json
{
  "productId": "15390066",
  "url": "https://www.morele.net/laptop-msi-katana-15-hx-b14wfk-494xpl-i5-14450hx-16-gb-512-gb-rtx-5060-144-hz-15390066/",
  "name": "Laptop MSI Katana 15 HX B14WFK-494XPL i5-14450HX / 16 GB / 512 GB / RTX 5060 / 144 Hz",
  "price": 3999,
  "currency": "PLN",
  "rating": 5,
  "reviewCount": 4,
  "category": "laptopy-31",
  "imageUrl": "https://images.morele.net/i500/15390066_0_i500.jpg",
  "scrapedAt": "2026-08-16T16:28:53.893Z"
}
```

### How to use the Morele Scraper

#### Option A — a category

Enter a category slug as it appears after /kategoria/ in the URL. Verified examples: `laptopy-31`, `dyski-ssd-518`, `dyski-hdd-4`, `laptopy-poleasingowe-497`.

#### Option B — a keyword search

Enter a search term instead and the Actor searches the whole shop.

#### Option C — a price monitor

Schedule the run daily over your categories and diff `price` between runs to catch repricing.

### Input parameters

| Input | Type | Description |
|---|---|---|
| `categoryPath` | string | Morele category slug as it appears after /kategoria/ in the URL. Verified examples: laptopy-31 (laptops), dyski-ssd-518, dyski-hdd-4, laptopy-poleasingowe-497 (refurbished laptops), dyski-zewnetrzne-ssd-207. Default: `"laptopy-31"`. |
| `searchTerm` | string | Optional keyword search across the whole shop. When set, the category path is ignored. |
| `maxResults` | integer | Stop after this many products. Each page returns 30. Default: `1000`. |
| `proxyConfiguration` | object | Morele serves Polish exits. Residential proxy pinned to Poland is used automatically. |

### Tips for best results

- Category slugs carry a numeric suffix that is part of the identity — `laptopy-31` is laptops, `laptopy-33` is something else entirely.
- Ratings are filled for roughly half of products; a new listing has none yet, which is information in itself.
- The refurbished category (`laptopy-poleasingowe-497`) is worth watching separately — it prices very differently from new stock.
- Prices are zloty as published, with no conversion applied.
- Run daily rather than hourly; Morele reprices in steps, not continuously.

### Integrations

Connect this Actor to Make, Zapier, n8n, Slack, Google Sheets, GitHub, Airtable or any HTTP endpoint through Apify integrations. Every finished run can push its dataset straight into your warehouse, or fire a webhook so a downstream job starts the moment the data lands.

### API usage

Run the Actor from your own code with the Apify API. Datasets can be exported as JSON, CSV, Excel, XML, RSS or HTML, and every run is available through the [Apify API reference](https://docs.apify.com/api/v2).

```bash
curl -X POST "https://api.apify.com/v2/acts/logiover~morele-poland-product-scraper/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"input": {"categoryPath": "laptopy-31", "searchTerm": "", "maxResults": 1000, "proxyConfiguration": {"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "PL"}}}'
```

Python, JavaScript, PHP and CLI clients are documented under [Apify API clients](https://docs.apify.com/api/client).

### Use with AI agents (MCP)

This Actor is callable from any MCP-compatible client — Claude, Cursor, VS Code or your own agent — through the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp). An agent can call it to answer live questions about Polish electronics prices and buyer ratings instead of guessing from stale training data.

### FAQ

#### Do I need a Morele account or API key?

No. The Actor reads public category pages with no login and no key.

#### Why does pagination break on Morele for other scrapers?

Two URL forms look right and are not: `?page=2` is ignored, and `/kategoria/<slug>/2/` returns page one again with no error. Only the filter-string form moves the window.

#### How many products can one run return?

Each page carries 30 and large categories run to hundreds of pages, so the practical limit is the result cap you set.

#### What currency are prices in?

Polish zloty (PLN), as published.

#### Why are brand and EAN missing?

They are not in the page markup. Shipping columns that would always be blank is worse than not claiming them.

#### Why did my run return zero products?

Usually a category slug with the wrong numeric suffix. Copy it from a Morele URL.

#### Is the data in Polish?

Yes. Product names and categories are published in Polish and collected as written.

#### Can I use this for EU price-comparison compliance work?

It gives you the current price and rating per product; for the 30-day lowest price required by EU rules, see the Altex Scraper, which publishes that figure directly.

#### Can I export to CSV or Excel?

Yes. Every run's dataset exports as JSON, CSV, Excel, XML, RSS or HTML from the Storage tab, the API, or automatically through an integration.

#### How fresh is the data?

Every run reads the site live at that moment, so the data is as fresh as the site itself. Schedule the Actor hourly, daily or weekly to build a time series.

#### How often is the Actor updated?

It is monitored and fixed when the site changes its markup or its endpoints. Report anything that looks wrong through the Issues tab and it gets picked up.

### Is it legal to scrape Morele?

This Actor collects only publicly available information — the same pages any visitor can open without logging in. It does not bypass a login, and it does not touch private or personal accounts. Public data collection is legal in most jurisdictions, but how you *use* the data is your responsibility: if any record contains personal data, GDPR and comparable laws still apply, and you need a lawful basis for processing it. When in doubt, take legal advice. See Apify's [ethical web scraping](https://blog.apify.com/what-is-ethical-web-scraping-and-how-do-you-do-it/) guide.

### Related scrapers

- [Otodom Scraper](https://apify.com/logiover/otodom-pl-scraper-polish-real-estate-data) — Polish property listings.
- [Altex Scraper](https://apify.com/logiover/altex-romania-product-scraper) — Romanian electronics with EU lowest-price data.
- [eMAG Scraper](https://apify.com/logiover/emag-scraper) — Romanian and Bulgarian e-commerce.
- [Onliner Scraper](https://apify.com/logiover/onliner-belarus-product-scraper) — Belarusian price comparison.
- [Ripley Scraper](https://apify.com/logiover/ripley-chile-product-scraper) — Chilean retail prices.

# Actor input Schema

## `categoryPath` (type: `string`):

Morele category slug as it appears after /kategoria/ in the URL. Verified examples: laptopy-31 (laptops), dyski-ssd-518, dyski-hdd-4, laptopy-poleasingowe-497 (refurbished laptops), dyski-zewnetrzne-ssd-207.

## `searchTerm` (type: `string`):

Optional keyword search across the whole shop. When set, the category path is ignored.

## `maxResults` (type: `integer`):

Stop after this many products. Each page returns 30.

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

Morele serves Polish exits. Residential proxy pinned to Poland is used automatically.

## Actor input object example

```json
{
  "categoryPath": "laptopy-31",
  "searchTerm": "ssd 1tb",
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "PL"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Every record collected in this run. Open the Dataset tab to browse, filter or export as JSON, CSV or Excel.

# 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 = {
    "categoryPath": "laptopy-31",
    "maxResults": 1000,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "PL"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/morele-poland-product-scraper").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 = {
    "categoryPath": "laptopy-31",
    "maxResults": 1000,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "PL",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("logiover/morele-poland-product-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "categoryPath": "laptopy-31",
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "PL"
  }
}' |
apify call logiover/morele-poland-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,logiover/morele-poland-product-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Xqrc6BQA2NbtghxWX/builds/pDwlSPcpQPEBbngLz/openapi.json
