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

The Peppermayo Review Scraper extracts customer reviews from Peppermayo product pages, including ratings, titles, and reviewer details. With residential proxy support, it delivers structured JSON for sentiment analysis, e-commerce optimization, or market research, using simple URL inputs.

- **URL**: https://apify.com/getdataforme/peppermayo-review-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

$10.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/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

### Peppermayo Review Scraper

The **Peppermayo Review Scraper** is an Apify Actor that extracts customer reviews from Peppermayo product pages. By providing product URLs, users can collect detailed review data, including ratings, titles, and reviewer details, for sentiment analysis or market research.

### Input Parameters

The Actor requires a JSON input with the following parameters:

| Parameter            | Type   | Description                                                                 | Default                              |
|----------------------|--------|-----------------------------------------------------------------------------|--------------------------------------|
| `proxyConfiguration` | Object | Proxy settings for reliable scraping. Set `useApifyProxy: true` and specify `apifyProxyGroups` (e.g., `["RESIDENTIAL"]`). | `{ "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }` |
| `urls`               | Array  | List of Peppermayo product page URLs to scrape reviews from.                | `[]`                                 |

#### Example Input

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

### Features

- **Detailed Review Extraction**: Captures review IDs, ratings, titles, review text, and product images.
- **Proxy Support**: Utilizes Apify's residential proxies for reliable and anonymous scraping.
- **Structured JSON Output**: Delivers clean, organized data for easy integration into analysis tools.
- **Scalable URL Processing**: Supports multiple URLs for batch scraping of review data.
- **Robust Error Handling**: Ensures consistent performance on dynamic Peppermayo review pages.

### Output

The Actor outputs an array of review objects in JSON format, each containing comprehensive review details.

#### Example Output

```json
[
  {
    "review_id": "59e9fb1a-81c8-4902-9091-a3c4c8b609a1",
    "product_name": "Willow Chiffon Mini Dress - Yellow",
    "rating": 5,
    "review_title": "Really really prettyyyy",
    "review_body": "Fits good and is exactly like the picture!",
    "reviewer_name": "Liyah Y.",
    "is_verified": true,
    "date_created": "2025-04-27T20:21:20.581Z",
    "product_url": "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow",
    "product_image_url": "https://cdn.shopify.com/s/files/1/0498/7800/7976/files/Willow-Chiffon-Mini-Dress-Yellow-4-Peppermayojpg_x280.jpg?v=1738806435"
  },
  {
    "review_id": "5880de08-d021-4e98-9dc8-b4b55ad7f812",
    "product_name": "Willow Chiffon Mini Dress - Yellow",
    "rating": 5,
    "review_title": "Amazing",
    "review_body": "The dress is so stunning and the open back adds the perfect sexy touch. Fits true to size and i had no issues with the front being too big. I am 5'4, 125lbs, and 34 bust, 36 hips, and 26 waist for reference and ig to a size 2",
    "reviewer_name": "Rachel",
    "is_verified": true,
    "date_created": "2025-04-26T01:30:05.881Z",
    "product_url": "https://peppermayo.com/products/willow-chiffon-mini-dress-yellow",
    "product_image_url": "https://cdn.shopify.com/s/files/1/0498/7800/7976/files/Willow-Chiffon-Mini-Dress-Yellow-4-Peppermayojpg_x280.jpg?v=1738806435"
  }
]
```

### Use Cases

- **Customer Sentiment Analysis**: Analyze ratings and review text to gauge customer satisfaction with Peppermayo products.
- **E-commerce Optimization**: Use review data to enhance product listings or inform inventory decisions.
- **Market Research**: Collect feedback to assess customer preferences for fashion products.
- **Competitor Analysis**: Compare review data to evaluate Peppermayo’s product performance against competitors.

### Support

For bug reports or custom needs, please contact us at **support@getdataforme.com** or use our contact form: <https://getdataforme.com/contact/>.\
Make sure to include a clear subject line in your message, such as "Peppermayo Review Scraper Support."

Thank you for using the Peppermayo Review Scraper!

# 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-review-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-review-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-review-scraper --silent --output-dataset

```

## MCP server setup

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