# Scrape Naver 1-2 Star Negative Reviews by Product URL

**Use case:** 

See what Korean customers complain about. Paste a Naver SmartStore or Brand Store product URL and this task collects only 1-2 star reviews (starRatings 1 and 2), newest first. Each review returns rating, reviewContent, reviewDate, optionPurchased, images/videos, helpfulCount and sellerReply. Up to 80 reviews. Ideal for complaint analysis, product improvement and competitor teardown.

## Input

```json
{
  "productUrls": [
    "https://brand.naver.com/lumena/products/13244298880"
  ],
  "sortBy": "Latest",
  "maxReviewsPerProduct": 80,
  "starRatings": [
    "1",
    "2"
  ],
  "mediaOnly": false,
  "storePickOnly": false,
  "afterUseOnly": false,
  "repurchaseOnly": false
}
```

## Output

```json
{
  "productName": {
    "label": "Product Name",
    "format": "text"
  },
  "productRating": {
    "label": "Product Avg Rating",
    "format": "number"
  },
  "productReviewCount": {
    "label": "Product Review Count",
    "format": "number"
  },
  "productReviewSummary": {
    "label": "Product Review Summary",
    "format": "object"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewContent": {
    "label": "Review",
    "format": "text"
  },
  "reviewDate": {
    "label": "Date",
    "format": "text"
  },
  "reviewType": {
    "label": "Type",
    "format": "text"
  },
  "contentType": {
    "label": "Content",
    "format": "text"
  },
  "optionPurchased": {
    "label": "Option Bought",
    "format": "text"
  },
  "repurchase": {
    "label": "Repurchase",
    "format": "boolean"
  },
  "bestReview": {
    "label": "Best Review",
    "format": "boolean"
  },
  "freeTrial": {
    "label": "Free Trial",
    "format": "boolean"
  },
  "helpfulCount": {
    "label": "Helpful Votes",
    "format": "number"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "videos": {
    "label": "Videos",
    "format": "array"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "reviewerInfo": {
    "label": "Reviewer Info",
    "format": "array"
  },
  "sellerReply": {
    "label": "Seller Reply",
    "format": "text"
  },
  "writerId": {
    "label": "Reviewer",
    "format": "text"
  },
  "writerProfileImage": {
    "label": "Reviewer Avatar",
    "format": "image"
  },
  "modifyDate": {
    "label": "Modified Date",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "storeName": {
    "label": "Store",
    "format": "text"
  },
  "productUrl": {
    "label": "Product Link",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Naver Shopping Reviews Scraper](https://apify.com/delicious_zebu/naver-shopping-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/naver-shopping-reviews-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/naver-shopping-reviews-scraper.md

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