# Myers Product Scraper (`hello.datawizards/myers-product-scraper`) Actor

The myers-product-scraper is an Apify Actor that extracts product data from Myer.com.au based on search queries. It captures brand, price, image, promo info, and links—ideal for market research, price tracking, or e-commerce analytics with fast, structured results

- **URL**: https://apify.com/hello.datawizards/myers-product-scraper.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 10 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 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.

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

***

## 🛍️ Myers Product Scraper · Apify Actor

Extract **clean, structured, and reliable product data from Myer Australia** using search keywords or direct product URLs.
Perfect for **e-commerce analytics, price monitoring, catalog building, and market research**.

Built and maintained by **DataWizards**
🔗 <https://linkedin.com/in/data-wizards-aa8080342>

***

### 📌 What Is `Myers Product Scraper`?

`Myers Product Scraper` is a powerful Apify Actor designed to **scrape product listings and detailed product pages from Myer (myer.com.au)**.

It supports:

- 🔎 **Keyword-based searches** (e.g. `bikini`)
- 🔗 **Direct product URLs**
- 📦 **Bulk extraction with limits**
- 🧩 **Structured JSON output**, ready for APIs, dashboards, or databases

No login required. Fully proxy-compatible.

***

### 🧠 Key Features

- ✅ Scrape **product name, brand, pricing, availability**
- ✅ Supports **search queries + direct product URLs**
- ✅ Extracts **images, variants, colors, and IDs**
- ✅ Captures **SEO tokens & Myer category structure**
- ✅ Handles **price ranges & list prices**
- ✅ Built-in **Apify Proxy support**
- ✅ Clean, developer-friendly JSON output

***

### 🛠️ Input Configuration

#### Example Input

```json
{
  "item_limit": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "queries": [
    "bikini",
    "https://www.myer.com.au/p/champion-champion-rochester-athletic-puffer-jacket-ctn9n-833432950-833424400-1"
  ]
}
```

#### 🔧 Input Fields Explained

| Field                              | Type    | Description                               |
| ---------------------------------- | ------- | ----------------------------------------- |
| `item_limit`                       | number  | Maximum number of products to scrape      |
| `queries`                          | array   | Search keywords or full Myer product URLs |
| `proxyConfiguration.useApifyProxy` | boolean | Enables Apify Proxy (recommended)         |

***

### 📤 Output Example

```json
[
  {
    "id": "252560440_252593920",
    "name": "Smooth Silhouettes Low Back Shorts in Praline",
    "brand": "Ambra",
    "merch_category": "IA Intimate & Sleep/Underwear/NB SHAPEWEAR/BOTTOM/SHORT",
    "is_available": true,
    "is_buyable": true,
    "supplier_colour": "Praline",
    "seo_token": "ambra-smooth-silhouettes-low-back-short-in-praline",
    "variant_ids": [
      "252593920",
      "252593980",
      "252594040",
      "252594100",
      "252594160"
    ],
    "colours": ["Natural"],
    "has_more_colours": true,
    "price_from": 34.95,
    "price_to": 34.95,
    "list_price_from": 34.95,
    "list_price_to": 34.95,
    "images": [
      "https://myer-media.com.au/.../252560440_252593920_1_2_240x309.jpg"
    ],
    "mf_part_number": "AMSHSSLBSH",
    "url": "https://www.myer.com.au/p/ambra-smooth-silhouettes-low-back-short-in-praline"
  }
]
```

***

### 🚀 Use Cases

- 🛒 **E-commerce Price Monitoring**
- 📊 **Product Catalog Aggregation**
- 📈 **Competitor Analysis**
- 🤖 **Retail Automation Pipelines**
- 🧠 **Trend & Brand Intelligence**
- 🧾 **Affiliate & SEO Content Generation**

***

### ✅ Best Practices

- ✔ Use **Apify Proxy** for stable results
- ✔ Limit `item_limit` for large keyword searches
- ✔ Mix **keywords + URLs** for flexible scraping
- ✔ Store results in datasets for easy API access
- ✔ Schedule runs for periodic price tracking

***

### 🧰 Advanced Tips

- Combine with Apify **Scheduler** for daily monitoring
- Export data to **BigQuery, Snowflake, or CSV**
- Use downstream actors for **price comparison**
- Ideal for **AI training datasets** (product intelligence)

***

### 🤝 Support & Customization

Need custom fields, simplified output, or a tailored scraper?

**DataWizards are always ready for you.**

📩 Email: **<hello.datawizard@gmail.com>**
✉️ **Email Subject**: `Myers Product Scraper – Custom Support`
🔗 LinkedIn: <https://linkedin.com/in/data-wizards-aa8080342>

> For more custom/simplified outputs or bug reports, please contact us or open an issue. Thank you!

***

### 🐞 Feedback & Bug Reports

Found an issue or want a new feature?

📧 Email: **<hello.datawizard@gmail.com>**
🛠️ **Subject**: `Bug Report – Myers Product Scraper`
Or report directly via Apify.

***

### 🧩 Need Something More?

Whether it’s:

- A **custom Myer scraper**
- A **multi-store retail crawler**
- Or a **fully managed data pipeline**

✨ **DataWizards will build it for you.**

***

#### 🏁 Start extracting Myer product data smarter with **Myers Product Scraper** — fast, scalable, and production-ready.

# Actor input Schema

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

One or more queries or product urls where the crawler will start.

## `item_limit` (type: `integer`):

The maximum number of items to scrape.

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

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "queries": [
    "bikini",
    "https://www.myer.com.au/p/champion-champion-rochester-athletic-puffer-jacket-ctn9n-833432950-833424400-1"
  ],
  "item_limit": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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": [
        "bikini",
        "https://www.myer.com.au/p/champion-champion-rochester-athletic-puffer-jacket-ctn9n-833432950-833424400-1"
    ],
    "item_limit": 20,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/myers-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 = {
    "queries": [
        "bikini",
        "https://www.myer.com.au/p/champion-champion-rochester-athletic-puffer-jacket-ctn9n-833432950-833424400-1",
    ],
    "item_limit": 20,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/myers-product-scraper").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 '{
  "queries": [
    "bikini",
    "https://www.myer.com.au/p/champion-champion-rochester-athletic-puffer-jacket-ctn9n-833432950-833424400-1"
  ],
  "item_limit": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call hello.datawizards/myers-product-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hello.datawizards/myers-product-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/rWQUaIe2cHiXgONgO/builds/nroSSsHqYb2GNYGH5/openapi.json
