# Morrisons UK Grocery Scraper (`illehius/morrisons-scraper`) Actor

Scrapes product listings from groceries.morrisons.com — returns names, prices, unit prices, brands, and sizes for any search query.

- **URL**: https://apify.com/illehius/morrisons-scraper.md
- **Developed by:** [Siddhant](https://apify.com/illehius) (community)
- **Categories:** Automation, Developer tools, E-commerce
- **Stats:** 40 total users, 9 monthly users, 97.3% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 product results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## Morrisons UK Grocery Scraper

Scrape product listings from [groceries.morrisons.com](https://groceries.morrisons.com) by search query. Returns structured data for every product found — including name, brand, price, unit price, size, offer status, and direct product URL.

### Features

- Search for any product by keyword (e.g. "beans", "semi skimmed milk", "pasta")
- Multiple queries in a single run
- Results are written to the default dataset
- Unit pricing with normalised measures (per kg, per litre, per item)
- Brand detection including Morrisons own-brand labels (Morrisons, The Best, Savers)
- Promotional offer detection with original and current price
- Product weight/size from dedicated size elements
- Configurable result limit per query

### Input

| Field | Type | Description | Default |
|-------|------|-------------|---------|
| `queries` | string\[] | List of search queries | *required* |
| `maxResultsPerQuery` | integer | Max products per query (1-100) | 20 |

#### Example input

```json
{
    "queries": ["baked beans", "whole milk", "sourdough"],
    "maxResultsPerQuery": 10
}
```

### Output

Each result in the dataset contains:

| Field | Type | Description |
|-------|------|-------------|
| `store` | string | Always `"morrisons"` |
| `query` | string | The search query that produced this result |
| `name` | string | Product name |
| `brand` | string | Brand name (e.g. `"Morrisons"`, `"Heinz"`) |
| `productId` | string | Morrisons product ID |
| `price` | number | Current price in GBP |
| `originalPrice` | number/null | Original price when discounted |
| `unitPrice` | number | Price per unit (e.g. per kg, per litre) |
| `unitPriceMeasure` | string | Unit measure (e.g. `"per kg"`, `"per litre"`) |
| `unitSize` | string | Product weight/size (e.g. `"800g"`, `"6 x 415g"`) |
| `onOffer` | boolean | Whether the product has a promotional offer |
| `offerDescription` | string | Offer details (e.g. `"Now £4.50, Was £5.25"`) |
| `imageUrl` | string | Product image URL |
| `productUrl` | string | Direct link to product page on groceries.morrisons.com |
| `categoryPath` | string\[]/null | Morrisons category breadcrumb |
| `rating` | number/null | Product rating when present |
| `ratingCount` | number/null | Number of ratings when present |
| `available` | boolean | Whether the product is available |
| `attributes` | string\[] | Product badges/attributes |
| `scrapedAt` | string | ISO 8601 timestamp |

#### Example output

```json
{
    "store": "morrisons",
    "query": "beans",
    "name": "Heinz Baked Beans in a Rich Tomato Sauce 6 x 415g",
    "brand": "Heinz",
    "productId": "107311159",
    "price": 4.50,
    "originalPrice": 5.25,
    "unitPrice": 1.81,
    "unitPriceMeasure": "per kg",
    "unitSize": "6 x 415g",
    "onOffer": true,
    "offerDescription": "Now £4.50, Was £5.25",
    "imageUrl": "https://groceries.morrisons.com/images-v3/.../300x300.jpg",
    "productUrl": "https://groceries.morrisons.com/products/heinz-baked-beans-in-a-rich-tomato-sauce-6-x-415g/107311159",
    "categoryPath": ["Food Cupboard", "Tins, Cans & Packets", "Baked Beans"],
    "rating": 4.2,
    "ratingCount": 123,
    "available": true,
    "attributes": ["Suitable for vegetarians"],
    "scrapedAt": "2026-03-28T12:00:00.000Z"
}
```

### Use cases

- **Price monitoring** — track Morrisons prices over time and detect price drops
- **Basket comparison** — compare grocery costs across UK supermarkets
- **Market research** — analyse competitive pricing and product ranges
- **Deal alerts** — build notifications for promotional offers
- **Shopping apps** — power product search and comparison features

### Notes

- Search results may include sponsored products at the top; these are filtered from output.
- No bot detection or login required for search pages

# Actor input Schema

## `queries` (type: `array`):

List of product search queries (e.g. \["beans", "milk", "bread"])

## `maxResultsPerQuery` (type: `integer`):

Maximum number of products to return per search query

## Actor input object example

```json
{
  "queries": [
    "baked beans",
    "whole milk",
    "sourdough"
  ],
  "maxResultsPerQuery": 10
}
```

# Actor output Schema

## `products` (type: `string`):

Dataset of scraped Morrisons product listings — each row contains name, brand, price, originalPrice, unitPrice, unitPriceMeasure, unitSize, onOffer, offerDescription, imageUrl, productUrl, categoryPath, rating, ratingCount, available, attributes, and scrapedAt.

# 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 = {
    "queries": [
        "baked beans",
        "whole milk",
        "sourdough"
    ],
    "maxResultsPerQuery": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("illehius/morrisons-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 = {
    "queries": [
        "baked beans",
        "whole milk",
        "sourdough",
    ],
    "maxResultsPerQuery": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("illehius/morrisons-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 '{
  "queries": [
    "baked beans",
    "whole milk",
    "sourdough"
  ],
  "maxResultsPerQuery": 10
}' |
apify call illehius/morrisons-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,illehius/morrisons-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/Bjf9zr9nYu8CrNL9u/builds/9fVLsOj9AEiMkqT3w/openapi.json
