# Hwahae Product Search Scraper (`stealth_mode/hwahae-product-search-scraper`) Actor

Scrape product listings from Hwahae.com search results in bulk. Collect names, brands, ratings, ingredients, pricing, rankings, and 25+ fields per product — perfect for beauty market research, competitor analysis, and ingredient tracking.

- **URL**: https://apify.com/stealth\_mode/hwahae-product-search-scraper.md
- **Developed by:** [Stealth mode](https://apify.com/stealth_mode) (community)
- **Categories:** Automation, Developer tools, E-commerce
- **Stats:** 5 total users, 3 monthly users, 85.1% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Hwahae.com Products Search Scraper: Extract K-Beauty Data at Scale

***

### What Is Hwahae.com?

Hwahae (화해) is one of South Korea's most trusted beauty and skincare platforms, offering product discovery, user reviews, and ingredient analysis for thousands of K-beauty items. Its search functionality surfaces ranked products across categories like creams, serums, and sunscreens. The **Hwahae Products Search Scraper** automates bulk extraction from these search result pages, saving researchers and analysts hours of manual work.

***

### Overview

This scraper collects structured product data directly from Hwahae search result URLs. It is suited for:

- **Beauty brands** monitoring competitor rankings and pricing
- **Cosmetic formulators** researching ingredient trends
- **Market researchers** analyzing K-beauty product landscapes
- **E-commerce platforms** enriching product catalogs with review and rating data

The scraper handles pagination automatically and supports configurable item limits and error tolerance for large-scale runs.

***

### Input Format

```json
{
  "ignore_url_failures": true,
  "max_items_per_url": 200,
  "urls": [
    "https://www.hwahae.com/en/search?q=cream&tab=all"
  ]
}
```

| Field | Type | Default | Description |
|---|---|---|---|
| `urls` | `array` | — | One or more Hwahae search result URLs to scrape. Use the `?q=` parameter for keyword searches and `tab=all` to include all product types. Add URLs one by one or via bulk edit. |
| `max_items_per_url` | `integer` | `20` | Maximum number of products to collect per URL. Set higher (e.g., `200`) for broader dataset coverage. |
| `ignore_url_failures` | `boolean` | `true` | If `true`, the scraper continues running when a URL fails instead of stopping the entire run — recommended for bulk jobs. |

> **Tip:** Narrow results by adjusting the `q=` query (e.g., `q=sunscreen`, `q=toner`) or by changing the `tab` parameter if category-specific tabs are available.

***

### Output Format

#### Sample Record

```json
{
  "ad_purchase_index": 0,
  "brand": "WELLAGE (WELLAGE)",
  "brand_alias": "WELLAGE",
  "brand_name": "WELLAGE",
  "product_name": "REAL HYALURONIC SOOTHING CREAM",
  "obsolete": false,
  "sale": true,
  "update_time": 1765387861,
  "review_count": 3664,
  "avg_ratings": 4.64410480349345,
  "view_count": 0,
  "ingredients": false,
  "rank": 0,
  "rank_delta": 0,
  "rank_delta_new": false,
  "rank_order": 3,
  "encrypted_product_id": "d9654d11e8908db59c0f996dd31e3019",
  "image_url": "https://img.hwahae.co.kr/products/2177164/2177164_20260113144525.jpg",
  "buy_info": "28,000원",
  "uid": "12acbded-2573-4bee-a982-0da9e20ff2be",
  "id": 2177164,
  "goods": [
    {
      "capacity": "80ml",
      "discount_price": 22400,
      "discount_rate": 20,
      "id": 75134,
      "name": "[only화해] 리얼 히알루로닉 수딩크림 80ml (+블루 앰플 마스크 2매 증정)"
    }
  ],
  "orderable_goods_stat": {
    "top_priority_image_url": "https://img.hwahae.co.kr/commerce/goods/20260514_091114_composed-represent.png",
    "total_count": 1
  },
  "product_price": 28000,
  "product_capacity": null,
  "exchange_rate_price": {
    "jpy": 2970,
    "usd": 18.65,
    "cnh": 126,
    "vnd": 490865
  },
  "from_url": "https://www.hwahae.com/en/search?q=cream&tab=all"
}
```

Each product record contains 25+ fields:

#### Identity & Brand

| Field | Meaning |
|---|---|
| `ID` | Internal Hwahae numeric product identifier |
| `UID` | Unique identifier used in platform URLs and API references |
| `Encrypted Product ID` | Obfuscated ID used in certain Hwahae endpoints |
| `Product Name` | Full product name as listed on Hwahae |
| `Brand` | Brand object containing metadata |
| `Brand Name` | Display name of the brand |
| `Brand Alias` | Alternate or romanized brand name |

#### Status & Availability

| Field | Meaning |
|---|---|
| `Obsolete` | Whether the product has been discontinued or delisted |
| `Sale` | Whether the product is currently on sale |
| `Update Time` | Timestamp of the last data update for this listing |
| `Goods` | Associated purchasable goods entries |
| `Orderable Goods Stat` | Availability/stock status for orderable variants |

#### Pricing

| Field | Meaning |
|---|---|
| `Product Price` | Base price in the local currency |
| `Exchange Rate Price` | Price converted using current exchange rates (relevant for international users) |
| `Product Capacity` | Volume or weight (e.g., `50ml`, `100g`) |
| `Buy Info` | Purchase links or platform availability details |

#### Ratings & Engagement

| Field | Meaning |
|---|---|
| `Average Ratings` | Mean user rating score |
| `Review Count` | Total number of user reviews submitted |
| `View Count` | Number of times the product page has been viewed |
| `Ad Purchase Index` | Indicator of paid promotional activity for the listing |

#### Ranking

| Field | Meaning |
|---|---|
| `Rank` | Current search/category rank on Hwahae |
| `Rank Order` | Ordinal position within the ranked list |
| `Rank Delta` | Change in rank since the previous period |
| `Rank Delta New` | Adjusted rank delta accounting for new entries |

#### Content & Media

| Field | Meaning |
|---|---|
| `Ingredients` | Full ingredient list (INCI format where available) |
| `Image URL` | Product thumbnail or main image URL |

***

### How to Use

1. **Build your search URL** — Go to `hwahae.com/en/search?q=YOUR_KEYWORD&tab=all` and copy the URL.
2. **Configure the input** — Paste the URL into `urls`. Set `max_items_per_url` based on how many results you need.
3. **Run the scraper** — Start the actor and monitor progress in the run log.
4. **Export results** — Download as JSON, CSV, or Excel for analysis.

**Best practices:**

- Run separate URLs for different search queries to keep datasets organized.
- Use `max_items_per_url: 200` or higher for market-wide sweeps; lower values work for quick spot checks.
- Keep `ignore_url_failures: true` for multi-URL runs to avoid partial failures halting your dataset.

***

### Use Cases & Business Value

- **Trend tracking:** Monitor which product types and ingredients are rising in rank week over week
- **Ingredient research:** Extract INCI ingredient lists in bulk for formulation analysis
- **Pricing intelligence:** Compare price points and sale patterns across brands
- **Review analytics:** Correlate review counts and ratings with ranking positions

***

### Conclusion

The **Hwahae Products Search Scraper** turns K-beauty search results into structured, analysis-ready datasets. With 25+ fields covering rankings, ingredients, pricing, and engagement metrics, it delivers actionable intelligence for beauty brands, researchers, and developers alike.

# Actor input Schema

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

Add the URLs of the product search list urls you want to scrape. You can paste URLs one by one, or use the Bulk edit section to add a prepared list.

## `ignore_url_failures` (type: `boolean`):

If true, the scraper will continue running even if some URLs fail to be scraped.

## `max_items_per_url` (type: `integer`):

The maximum number of items to scrape per URL.

## Actor input object example

```json
{
  "urls": [
    "https://www.hwahae.com/en/search?q=cream&tab=all"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20
}
```

# 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://www.hwahae.com/en/search?q=cream&tab=all"
    ],
    "ignore_url_failures": true,
    "max_items_per_url": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("stealth_mode/hwahae-product-search-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://www.hwahae.com/en/search?q=cream&tab=all"],
    "ignore_url_failures": True,
    "max_items_per_url": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("stealth_mode/hwahae-product-search-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 '{
  "urls": [
    "https://www.hwahae.com/en/search?q=cream&tab=all"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20
}' |
apify call stealth_mode/hwahae-product-search-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/a7y1LBmG2NgTRoHnW/builds/lFmEKSS1UBhqdQnh8/openapi.json
