# Peppermayo Scraper (`getdataforme/peppermayo-scraper`) Actor

PepperMayo-urls-Scraper extracts detailed product data from Peppermayo URLs, including name, price, brand, images, variants, and availability. Ideal for fashion market research, price tracking, and e-commerce tools. Fast, scalable, and outputs clean JSON.

- **URL**: https://apify.com/getdataforme/peppermayo-scraper.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** E-commerce, Jobs, Real estate
- **Stats:** 2 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$30.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

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

### 🛍️ PepperMayo-urls-Scraper

**Scrape detailed product data from Peppermayo product pages with ease.**

The **PepperMayo-urls-Scraper** is an Apify actor that extracts rich and structured product data directly from [peppermayo.com](https://peppermayo.com) product URLs. Ideal for e-commerce analysis, product tracking, competitive research, and fashion tech applications.

***

### 🚀 Features

- 📌 Extract product name, description, brand, GTIN13, SKU, price, currency, availability, and more.
- 🖼️ Includes all product images and variant information (e.g., size, color).
- ⚡ Fast and scalable scraping via Apify platform with proxy support.
- 📦 JSON output structured for easy use in applications or databases.

***

### 🧪 Input Example

Pass a list of product URLs in the input with an Apify proxy configuration:

```json
{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  },
  "urls": [
    "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow"
  ]
}
```

***

### 📤 Output Example

```json
{
  "product_name": "Willow Chiffon Mini Dress - Yellow",
  "product_url": "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow",
  "product_images": [
    "https://peppermayo.com/cdn/shop/files/Willow-Chiffon-Mini-Dress-Yellow-4-Peppermayojpg.jpg?v=1738806435"
  ],
  "product_description": "The Willow Chiffon Mini Dress offers a delicate mini length with...",
  "product_sku": "51373408190632",
  "product_gtin13": "9357408670603",
  "product_brand": "Peppermayo Exclusive",
  "variants": [
    {
      "name": "Yellow / AU 4",
      "sku": "SH-PM24-3002-YEL-YEL-4",
      "price": "119.95",
      "price_currency": "AUD",
      "availability": "http://schema.org/InStock",
      "url": "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow?variant=51373408190632",
      "image": "https://peppermayo.com/cdn/shop/files/Willow-Chiffon-Mini-Dress-Yellow-4-Peppermayojpg.jpg?v=1738806435"
    }
    // ... more variants
  ]
}
```

***

### 🔧 Use Cases

- Market research and trend analysis for fashion retailers
- Automated product listing comparisons
- Data collection for price monitoring
- Cataloging Peppermayo collections for resale or affiliate marketing

***

### 📞 Support

Need help or a custom version of this scraper?

📧 Email: <support@getdataforme.com>
📬 Contact form: <https://getdataforme.com/contact/>

📌 **Email subject suggestion:** `Support Request - PepperMayo-urls-Scraper`

We’re here to help!

***

### 📚 More from Us

Looking for more scrapers or automation tools?
Explore: <https://getdataforme.com>

***

# Actor input Schema

## `urls` (type: `array`):

A list of URLs of the web pages you want to scrape data from.

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

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

## Actor input object example

```json
{
  "urls": [
    "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow"
  ],
  "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 = {
    "urls": [
        "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/peppermayo-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 = {
    "urls": ["https://peppermayo.com/products/willow-chiffon-mini-dress-yellow"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/peppermayo-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 '{
  "urls": [
    "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call getdataforme/peppermayo-scraper --silent --output-dataset

```

## MCP server setup

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