# Coupang Price Scraper (`huggable_quote/coupang-price-scraper`) Actor

Scrape product prices, discounts, delivery info, seller data, and member-only pricing from Coupang. Supports bulk keyword search and category URL input with sorting options.

- **URL**: https://apify.com/huggable\_quote/coupang-price-scraper.md
- **Developed by:** [OrbitData Labs](https://apify.com/huggable_quote) (community)
- **Categories:** E-commerce
- **Stats:** 6 total users, 3 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Coupang Price Scraper

Scrape product prices, discounts, delivery info, seller data, and **member-only pricing** from [Coupang](https://www.coupang.com) — South Korea's largest e-commerce platform.

### Features

- **Bulk scraping** — Enter multiple search keywords and/or category URLs at once
- **Logged-in pricing** — Access member-exclusive discounts (WOW member discounts, coupon discounts) by providing Coupang credentials
- **Keyword search & category browsing** — Scrape by search query or category URL
- **Sorting** — Coupang Ranking, Price: Low to High, Price: High to Low, Best Selling, Newest
- **RSC data extraction** — Extracts structured JSON from React Server Components payload (faster and more reliable than HTML parsing)
- **Product detail scraping** — Detailed price breakdown, card discounts, cashback, other sellers, return/refurbished item info
- **Internal API integration** — Uses Coupang's internal APIs (`quantity-info`, `other-seller-info`) for comprehensive price data

### About Login (Optional)

> **Login is completely optional.** You do NOT need to provide your Coupang credentials to use this scraper.

| | With Login | Without Login |
|---|---|---|
| **Product listing** | Member-exclusive discounted prices | Regular (non-discounted) prices |
| **WOW member discounts** | Included | Not available |
| **Coupon discounts** | Included | Not available |
| **Card benefit info** | Included | Included |
| **Product details** | Full detail with member pricing | Full detail with regular pricing |

#### Privacy Notice

- **Your credentials are never stored, logged, or shared.** They are only used at runtime to log into Coupang within the browser session, and are discarded when the run ends.
- **No data is sent to the developer.** All scraping happens within your own Apify actor run environment.
- If you are uncomfortable providing credentials, simply leave the email and password fields empty — the scraper will still work and return regular (non-member) prices.

### Output Fields

#### List Data (per product)
| Field | Description |
|-------|-------------|
| `productId` | Coupang product ID |
| `title` | Product name |
| `salePrice` | Current sale price (member price when logged in) |
| `basePrice` | Original price |
| `discountRate` | Discount percentage |
| `discountType` | Discount type (WOW coupon, instant discount, etc.) |
| `badges` | Delivery badges (rocket_wow, today, dawn, etc.) |
| `deliveryText` | Delivery info text |
| `ratingAvg` | Average rating (1-5) |
| `ratingCount` | Number of reviews |
| `usedProductInfo` | New/return item counts and lowest price |
| `_source` | Which keyword or URL this product came from |

#### Detail Data (per product, when `maxDetailProducts > 0`)
| Field | Description |
|-------|-------------|
| `detail.price.finalPrice` | Final price after all discounts |
| `detail.price.couponPrice` | Coupon discount amount |
| `detail.price.couponDesc` | Coupon description |
| `detail.cardDiscount` | Card instant discount info |
| `detail.cashback` | Coupang cashback info |
| `detail.offerSummary` | New/return item counts with lowest price |
| `detail.sellers` | List of all sellers with prices |

### Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `email` | string | — | Coupang login email (optional) |
| `password` | string | — | Coupang login password (optional) |
| `keywords` | string[] | `[]` | List of search keywords (bulk input supported) |
| `categoryUrls` | string[] | `[]` | List of category URLs (bulk input supported) |
| `sortBy` | enum | `ranking` | Sort order |
| `maxPages` | integer | `1` | Pages to scrape per target |
| `maxDetailProducts` | integer | `5` | Products for detail scraping per target |
| `includeRawData` | boolean | `false` | Include raw RSC data |
| `proxyConfiguration` | object | — | Apify proxy settings |

### Example Input

#### Without login (regular prices)
```json
{
  "keywords": ["laptop"],
  "sortBy": "sales",
  "maxPages": 2,
  "maxDetailProducts": 10
}
````

#### With login (member-discounted prices)

```json
{
  "email": "your@email.com",
  "password": "your-password",
  "keywords": ["laptop"],
  "sortBy": "sales",
  "maxPages": 2,
  "maxDetailProducts": 10
}
```

#### Bulk scraping (multiple keywords + categories)

```json
{
  "keywords": ["laptop", "airpods", "monitor", "keyboard"],
  "categoryUrls": [
    "https://www.coupang.com/np/categories/178255",
    "https://www.coupang.com/np/categories/186764"
  ],
  "sortBy": "ranking",
  "maxPages": 3,
  "maxDetailProducts": 5
}
```

### Notes

- **Proxy recommended** — Coupang uses Akamai Bot Manager. Residential proxies significantly reduce blocking risk.
- **Rate limiting** — Built-in delays between page requests and product detail scraping to avoid detection.
- **Bulk support** — Each keyword and category URL is scraped independently. The `_source` field in output identifies which target each product came from.

# Actor input Schema

## `email` (type: `string`):

Coupang login email. Optional — provide to get member-exclusive discounted prices. Leave empty to scrape regular (non-discounted) prices. Your credentials are only used at runtime and are never stored or shared.

## `password` (type: `string`):

Coupang login password. Optional — only needed if email is provided. Your password is never stored, logged, or transmitted to the developer.

## `keywords` (type: `array`):

List of search keywords to scrape. Each keyword runs a separate search (e.g. 'laptop', 'airpods', 'monitor').

## `categoryUrls` (type: `array`):

List of Coupang category URLs to scrape (e.g. https://www.coupang.com/np/categories/178255). Each URL runs a separate category scrape.

## `sortBy` (type: `string`):

Sort order for product listings.

## `maxPages` (type: `integer`):

Number of listing pages to scrape per keyword or category URL.

## `maxDetailProducts` (type: `integer`):

Number of products per target to scrape detailed info for (price breakdown, sellers, card discounts). Set 0 to skip detail scraping.

## `includeRawData` (type: `boolean`):

Include raw RSC payload data in output (for debugging/advanced use).

## `proxyConfiguration` (type: `object`):

Proxy configuration. Residential proxies recommended to avoid bot detection.

## Actor input object example

```json
{
  "keywords": [],
  "categoryUrls": [],
  "sortBy": "ranking",
  "maxPages": 1,
  "maxDetailProducts": 5,
  "includeRawData": false,
  "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 = {
    "keywords": [],
    "categoryUrls": [],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("huggable_quote/coupang-price-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 = {
    "keywords": [],
    "categoryUrls": [],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("huggable_quote/coupang-price-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 '{
  "keywords": [],
  "categoryUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call huggable_quote/coupang-price-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Coupang Price Scraper",
        "description": "Scrape product prices, discounts, delivery info, seller data, and member-only pricing from Coupang. Supports bulk keyword search and category URL input with sorting options.",
        "version": "1.0",
        "x-build-id": "3RaWVjzAFwfp47hae"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/huggable_quote~coupang-price-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-huggable_quote-coupang-price-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/huggable_quote~coupang-price-scraper/runs": {
            "post": {
                "operationId": "runs-sync-huggable_quote-coupang-price-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/huggable_quote~coupang-price-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-huggable_quote-coupang-price-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "email": {
                        "title": "Coupang Email (Optional)",
                        "type": "string",
                        "description": "Coupang login email. Optional — provide to get member-exclusive discounted prices. Leave empty to scrape regular (non-discounted) prices. Your credentials are only used at runtime and are never stored or shared."
                    },
                    "password": {
                        "title": "Coupang Password (Optional)",
                        "type": "string",
                        "description": "Coupang login password. Optional — only needed if email is provided. Your password is never stored, logged, or transmitted to the developer."
                    },
                    "keywords": {
                        "title": "Search Keywords",
                        "type": "array",
                        "description": "List of search keywords to scrape. Each keyword runs a separate search (e.g. 'laptop', 'airpods', 'monitor').",
                        "items": {
                            "type": "string"
                        }
                    },
                    "categoryUrls": {
                        "title": "Category URLs",
                        "type": "array",
                        "description": "List of Coupang category URLs to scrape (e.g. https://www.coupang.com/np/categories/178255). Each URL runs a separate category scrape.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "ranking",
                            "priceLow",
                            "priceHigh",
                            "sales",
                            "latest"
                        ],
                        "type": "string",
                        "description": "Sort order for product listings.",
                        "default": "ranking"
                    },
                    "maxPages": {
                        "title": "Max Pages per Target",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Number of listing pages to scrape per keyword or category URL.",
                        "default": 1
                    },
                    "maxDetailProducts": {
                        "title": "Max Detail Products per Target",
                        "minimum": 0,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Number of products per target to scrape detailed info for (price breakdown, sellers, card discounts). Set 0 to skip detail scraping.",
                        "default": 5
                    },
                    "includeRawData": {
                        "title": "Include Raw RSC Data",
                        "type": "boolean",
                        "description": "Include raw RSC payload data in output (for debugging/advanced use).",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy configuration. Residential proxies recommended to avoid bot detection."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
