# Verify Coupang product IDs with listing details

**Use case:** 

Verify exact public Coupang products by URL or numeric ID and capture title, price, rating, review count, and image details.

## Input

```json
{
  "mode": "product",
  "searchQueries": [
    "노트북"
  ],
  "startUrls": [],
  "productUrls": [
    "8499380264"
  ],
  "maxResults": 5
}
```

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