# Review discounted Coupang listings from a results page

**Use case:** 

Collect public Coupang listings from a category or search page to review current discounted products with prices and ratings.

## Input

```json
{
  "mode": "url",
  "searchQueries": [
    "노트북"
  ],
  "startUrls": [
    {
      "url": "https://www.coupang.com/np/search?q=%EC%BB%A4%ED%94%BC%EB%A8%B8%EC%8B%A0"
    }
  ],
  "productUrls": [],
  "maxResults": 12
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount percent",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "rocketDelivery": {
    "label": "Rocket delivery",
    "format": "boolean"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "sourceType": {
    "label": "Source type",
    "format": "string"
  },
  "sourceQuery": {
    "label": "Source query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Coupang Product Listings Scraper](https://apify.com/khadinakbar/coupang-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/coupang-scraper) to learn more, explore other use cases, and run it yourself.