# Coles Australia Scraper - Products, Prices, Specials & Stock (`memo23/coles-scraper`) Actor

Scrape Coles (coles.com.au) products by keyword, category URL or product ID. Get name, brand, size, price, unit price, specials, stock, category and image. No proxy setup. JSON or CSV, pay per product.

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

## Pricing

from $0.80 / 1,000 products

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Coles Australia Scraper — Products, Prices, Specials & Stock

Scrape **Coles** (`coles.com.au`) by product keyword, category/search URL, or product ID. Get the product name, brand, size, current price, unit (comparable) price, was-price and specials, stock availability, category hierarchy, purchase restrictions and image — one clean row per product. No proxy setup, no store login.

Built for price monitoring, competitor and range analysis, grocery-tech apps, and anyone who needs Coles catalogue data as structured JSON instead of clicking through the site.

### Why use this scraper

- **Real prices, parsed.** Every row carries `now`, `was`, the saving, whether it's an online special, and the comparable unit price (e.g. `$1.65 / 1L`) as numbers you can sort and compare.
- **Monitor mode that only bills for change.** Turn on *Only new or changed products* and each run remembers what it saw last time, delivering (and charging for) only products that are new or repriced.
- **Three ways in.** Search a keyword, paste any Coles search or category URL, or pass a list of product IDs — mix all three in one run.
- **Rich beyond price.** Brand, pack size, category and sub-category, stock availability and quantity, purchase limits (retail and promotional), and age-restriction flags for liquor and tobacco.
- **No setup.** The actor handles the site's bot protection for you. No proxies to configure, no cookies to paste.

### Overview

Coles is one of Australia's two largest supermarket chains. This actor reads Coles' own product data for any search or category, normalizes it, and returns one row per product with price, stock and catalogue detail. It handles pagination automatically and works from keywords, pasted URLs, or product IDs.

### Supported inputs

| Input | What it does |
|---|---|
| `searchTerms` | Product keywords to search, e.g. `milk`, `coffee`, `tim tams`. Each is searched separately. |
| `startUrls` | Coles product-search URLs, category `/browse/` URLs, or direct `/product/` URLs — auto-routed. |
| `skuList` | Specific Coles product IDs to fetch directly, e.g. `8150288`. |
| `onlyChanged` | Monitor mode: deliver only products that are new or changed since the last run. |
| `maxItems` | Hard cap on products collected and billed. |
| `maxConcurrency` | Parallel requests. |

### Use cases

- **Price monitoring.** Track price and special changes on a basket of products over time with monitor mode.
- **Competitor & range analysis.** Pull an entire category to compare assortment, pack sizes and unit pricing.
- **Grocery & budgeting apps.** Feed live Coles prices into meal-planning, price-comparison or budgeting tools.
- **Market research.** Analyse pricing spread, private-label vs brand, and promotional depth across categories.

### How it works

1. Each keyword becomes a Coles product-search URL; pasted URLs and product IDs are auto-classified.
2. Listing pages are read and paginated automatically until `maxItems` is reached.
3. Each product's data is normalized into a flat row.
4. In monitor mode, a per-account store compares each product against the last run and skips unchanged ones before billing.

### Output sample

```json
{
  "type": "product",
  "source": "coles.com.au",
  "id": 8150288,
  "name": "Full Cream Milk",
  "brand": "Coles",
  "description": "COLES FULL CREAM MILK 3L",
  "size": "3L",
  "price": {
    "now": 4.95,
    "was": null,
    "saved": null,
    "currency": "AUD",
    "onlineSpecial": false,
    "comparable": "$1.65/ 1L",
    "unitPrice": 1.65,
    "unitMeasure": "1l"
  },
  "availability": true,
  "availabilityType": "InStoreAndOnline",
  "availableQuantity": 2485,
  "category": "Milk",
  "categoryGroup": "DAIRY",
  "subCategory": "Dairy, Eggs & Fridge",
  "restrictions": { "retailLimit": 20, "promotionalLimit": 12, "liquorAge": false, "tobaccoAge": false, "delivery": ["REMOTE SERVICE", "OVN"] },
  "featured": false,
  "imageUrl": "https://productimages.coles.com.au/productimages/8/8150288.jpg",
  "productUrl": "https://www.coles.com.au/product/coles-full-cream-milk-3l-8150288",
  "scrapedAt": "2026-09-19T13:00:00.000Z"
}
```

### Key output fields

`id`, `name`, `brand`, `size`, `description`, `price` (`now` / `was` / `saved` / `onlineSpecial` / `comparable` / `unitPrice` / `unitMeasure`), `availability` / `availabilityType` / `availableQuantity`, `category` / `categoryGroup` / `subCategory`, `restrictions`, `featured` (sponsored placement), `imageUrl`, `productUrl`, `scrapedAt`.

### Pricing

Pay-per-event: a small per-run start fee plus a per-product charge. Monitor mode (`onlyChanged`) only bills for products that are actually new or repriced, so recurring price-watch runs stay cheap.

### FAQ

**Do I need proxies?** No. Bot protection and network are handled for you.

**Are prices store-specific?** Coles prices and stock can vary by store. This actor returns Coles' default online catalogue pricing.

**How fresh is the data?** It reads Coles live at run time, so results reflect the site when the run starts.

**Can I watch a fixed basket?** Yes — pass the product IDs in `skuList` (or product URLs in `startUrls`) with `onlyChanged` on, and schedule the actor.

### For AI agents & LLM apps

Every row is flat, typed JSON with numeric price and unit-price fields and a stable schema, ready for a retrieval pipeline, an agent tool call, or a spreadsheet with no post-processing. Point an MCP-enabled agent at this actor to pull live Australian grocery prices on demand.

### ⚠️ Disclaimer

This actor collects only publicly available information from `coles.com.au`. Use the data in compliance with applicable laws and the source site's terms. You are responsible for how you use the scraped data.

### SEO Keywords

Coles scraper, coles.com.au scraper, Coles price scraper, Australian grocery prices API, supermarket price monitoring Australia, Coles product data, grocery price comparison Australia, Coles specials scraper, Coles catalogue API, unit price scraper, Coles stock availability, grocery scraping Australia.

# Actor input Schema

## `searchTerms` (type: `array`):

Keywords to search on Coles, e.g. `milk`, `coffee`, `tim tams`.

## `startUrls` (type: `array`):

Paste Coles product-search URLs (e.g. `https://www.coles.com.au/search/products?q=coffee`), category `/browse/` URLs, or direct `/product/` URLs — each is auto-routed.

## `skuList` (type: `array`):

Specific Coles product IDs to fetch directly, e.g. `8150288`.

## `onlyChanged` (type: `boolean`):

Remember products between runs and deliver only those that are new or whose price/availability changed since the last run. Unchanged products are skipped before billing, so a monitor run only pays for real changes.

## `store` (type: `string`):

Coles store id as `COL:<storeNumber>` (e.g. `COL:7674`). Prices and stock are per store. Leave empty for the default online store.

## `maxItems` (type: `integer`):

Hard cap on products collected (and billed).

## `maxConcurrency` (type: `integer`):

Parallel requests.

## Actor input object example

```json
{
  "searchTerms": [
    "milk"
  ],
  "startUrls": [],
  "skuList": [],
  "onlyChanged": false,
  "maxItems": 1000,
  "maxConcurrency": 10
}
```

# Actor output Schema

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

One row per Coles product with name, brand, size, price (now/was/unit/special), availability, category hierarchy, purchase restrictions and image.

# 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 = {
    "searchTerms": [
        "milk"
    ],
    "startUrls": [],
    "skuList": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/coles-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 = {
    "searchTerms": ["milk"],
    "startUrls": [],
    "skuList": [],
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/coles-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 '{
  "searchTerms": [
    "milk"
  ],
  "startUrls": [],
  "skuList": []
}' |
apify call memo23/coles-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,memo23/coles-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/Ghmq1qAfr5ZoTqp4E/builds/ojwZwaPDawHf9MiNX/openapi.json
