# Coupang Scraper — Product Listings, Rocket, Seller & Reviews (`haketa/coupang-scraper`) Actor

Scrape Coupang Korea largest e-commerce platform. Extract product listings with price, discount, Rocket delivery, seller type (1P/3P), product options, category path, reviews and full details. Search by keyword or product ID. KR residential proxy required.

- **URL**: https://apify.com/haketa/coupang-scraper.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 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 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 Scraper — Product Listings, Rocket Delivery, Seller & Reviews

Scrape **Coupang**, Korea's #1 e-commerce platform ("Amazon of Korea"), for product listings with **prices, discounts, Rocket delivery flags, seller type (1P/3P), product options/variants, reviews, category paths and full images**.

**Korean residential proxy required** — Coupang geo-gates to Korea. Included by default. No login needed.

---

### ⚡ Quick Start — 3 Ways to Use

#### Mode 1: Search by Keyword (discover products)

The simplest way. Type a keyword, get products. **Korean queries give the best results.**

```json
{
    "queries": ["노트북"],
    "maxItems": 50
}
````

👉 50 laptop products, with prices and Rocket delivery flags. Takes ~30 seconds.

#### Mode 2: Direct Product IDs (fastest, richest data)

Already know which products you want? Paste their IDs for the deepest data.

```json
{
    "productIds": ["3003727499", "821456789"],
    "includeDetails": true
}
```

👉 Full detail: brand, seller type, category path, options, ratings. Takes ~5 seconds.

#### Mode 3: Paste a Coupang URL

Have a Coupang search or product page open? Just paste the URL.

```json
{
    "startUrls": [
        "https://www.coupang.com/np/search?q=건강식품",
        "https://www.coupang.com/vp/products/3003727499"
    ]
}
```

👉 The actor auto-detects whether it's a search page or a product page.

***

### 🔍 How Search Works (Step by Step)

Understanding this flow helps you get the most out of the actor.

```
┌─────────────────────────────────────────────────────────────────┐
│  STEP 1: Search Page                                            │
│  queries: ["노트북"]  →  coupang.com/np/search?q=노트북          │
│                                                                  │
│  Finds ~60 products per page:                                    │
│  • Product ID (from URL)                                         │
│  • Title, price, discount %, rating (from JSON-LD + HTML)       │
│  • Rocket delivery badge 🚀                                      │
│  • Thumbnail image                                               │
│                                                                  │
│  ✅ Fast — ~30 products/second                                   │
├─────────────────────────────────────────────────────────────────┤
│  STEP 2: Detail Enrichment (when includeDetails: true)           │
│  For each product ID → coupang.com/vp/products/{id}              │
│                                                                  │
│  Adds:                                                           │
│  • Brand, category path (식품 > 축산 > 계란)                      │
│  • Seller type (1P Coupang vs 3P marketplace)                    │
│  • Product options (size/color/quantity variants)                │
│  • Full image gallery                                            │
│  • Delivery estimate (내일 도착 보장)                              │
│  • Rocket Fresh flag (groceries)                                 │
│  • Unit price (300원/구)                                         │
│                                                                  │
│  ⚠️ Slower — ~5-10 products/second (one page visit per product)  │
└─────────────────────────────────────────────────────────────────┘
```

#### Smart Strategy: Two-Pass Workflow

**Pass 1 — Discover:** Run with `includeDetails: false` to quickly scan hundreds of products.
**Pass 2 — Deep-dive:** Take the product IDs you're interested in and run with `includeDetails: true`.

```json
// Pass 1: Fast market scan (100 products in ~3 seconds)
{ "queries": ["노트북"], "maxItems": 100, "includeDetails": false }

// Pass 2: Deep-dive on products you care about
{ "productIds": ["3003727499", "821456789", ...], "includeDetails": true }
```

#### Where to Find Product IDs

Product IDs are the numbers in Coupang URLs. You can get them from:

1. **This actor's search results** — every search run returns `productId` fields
2. **Coupang.com directly** — open any product, look at the URL:
   ```
   coupang.com/vp/products/3003727499  →  ID is 3003727499
   ```
3. **Google** — search `site:coupang.com/vp/products 노트북` to find product pages
4. **Your own browsing** — browse Coupang with a Korean VPN, collect IDs from URLs

***

### Why This Actor?

#### Richer Than Competitors

Most Coupang scrapers only parse search result HTML and miss:

- **Seller type**: 1P (sold by Coupang directly) vs 3P (marketplace seller)
- **Product options**: size/color/quantity variants with per-option pricing
- **Rocket Fresh**: grocery-specific Rocket delivery eligibility
- **Delivery estimate**: "내일(수) 도착 보장" (guaranteed tomorrow delivery)
- **Unit price**: per-unit pricing (e.g. "300원/구" for eggs)
- **Category path**: full hierarchy (e.g. 식품 > 축산/계란 > 계란)
- **Brand**: manufacturer/brand name from structured data

We visit each product's detail page to extract these fields — data that search-only scrapers cannot access.

#### Korean E-Commerce Intelligence

Coupang dominates Korean e-commerce with:

- **100M+ products** across all categories
- **Rocket Delivery**: free next-day delivery on millions of items (similar to Amazon Prime)
- **Rocket Fresh**: dawn delivery for groceries
- **1P (first-party)**: Coupang sells directly, competing with marketplace (3P) sellers
- **Massive review volume**: top products have 10,000-100,000+ reviews

***

### Data Fields

| Category | Fields |
|----------|--------|
| **Identity** | `productId`, `title`, `brand`, `url` |
| **Category** | `categoryPath` (full hierarchy) |
| **Price** | `currentPrice`, `originalPrice`, `discountPercent`, `unitPrice`, `currency` |
| **Delivery** | `rocketDelivery`, `rocketFresh`, `deliveryEstimate` |
| **Seller** | `sellerType` (1P/3P), `sellerName`, `isCoupangSeller` |
| **Reviews** | `rating`, `reviewCount` (when includeReviews: true) |
| **Variants** | `options` (JSON array: size/color, per-option price & stock) |
| **Media** | `images` (JSON array of URLs) |
| **Meta** | `searchQuery`, `scrapedAt` |

***

### Input Parameters — Complete Reference

#### Search Modes (use one)

| Parameter | Type | Default | What It Does |
|-----------|------|---------|---------------|
| `queries` | string array | `["노트북"]` | **Keyword search.** Each query runs independently. Korean recommended. |
| `productIds` | string array | `[]` | **Direct product lookup.** Fastest mode — skips search, goes straight to detail. |
| `startUrls` | string array | `[]` | **URL-based.** Paste any Coupang search or product URL. Auto-detects type. |

> **What happens if I use multiple modes?** All three work together. `queries` generate searches, `productIds` are fetched directly, and `startUrls` are processed as-is. Results are deduplicated by product ID.

#### Search Controls

| Parameter | Type | Default | What It Does |
|-----------|------|---------|---------------|
| `maxPagesPerQuery` | integer | 2 | How many search result pages per keyword. Each page ≈ 60 products. |
| `maxItems` | integer | 100 | Stop after collecting this many products total. 0 = no limit. |

#### Detail Enrichment

| Parameter | Type | Default | What It Does |
|-----------|------|---------|---------------|
| `includeDetails` | boolean | true | Visit each product page for brand, seller, options, category, gallery. |
| `includeReviews` | boolean | true | Include rating and review count from detail pages. |
| `requestDelay` | integer | 500 | Milliseconds between detail page requests. 500-1000ms recommended. |
| `maxConcurrency` | integer | 6 | How many detail pages to fetch in parallel. 5-8 is safe. |

#### Proxy (Required)

| Parameter | Type | Default |
|-----------|------|---------|
| `proxyConfiguration` | proxy object | KR Residential | Coupang blocks non-Korean IPs. Preconfigured — don't change unless you have your own KR proxy. |

#### Real-World Examples

**"Show me what Samsung TVs cost on Coupang"**

```json
{
    "queries": ["삼성 TV"],
    "maxItems": 100,
    "includeDetails": false
}
```

→ Fast list of 100 TV products with prices and Rocket flags.

**"I found 3 interesting products — tell me everything about them"**

```json
{
    "productIds": ["3003727499", "821456789", "591234567"],
    "includeDetails": true,
    "includeReviews": true
}
```

→ Full detail: brand, seller type, options, category path, ratings, all images.

**"I need to monitor laptop prices daily"**

```json
{
    "queries": ["노트북", "태블릿", "맥북"],
    "maxItems": 500,
    "maxPagesPerQuery": 3,
    "includeDetails": false
}
```

→ Schedule this daily/weekly via Apify Scheduler for price trend data.

**"I have a list of Coupang URLs from my research"**

```json
{
    "startUrls": [
        "https://www.coupang.com/np/search?q=비타민",
        "https://www.coupang.com/np/search?q=프로틴",
        "https://www.coupang.com/vp/products/3003727499"
    ],
    "includeDetails": true
}
```

→ Mix of search pages and product pages — actor handles both.

***

### 🔤 Korean Keywords — Cheat Sheet

**Korean queries return 3-10x more results than English.** Here are ready-to-use keywords:

| Category | Korean | English | Best-Selling Products |
|----------|--------|---------|----------------------|
| 💻 Electronics | `노트북` | laptop | Samsung, LG, Apple MacBook |
| 📱 Mobile | `태블릿` | tablet | Samsung Galaxy Tab, iPad |
| 📱 Audio | `이어폰` | earphones | Samsung Galaxy Buds, Apple AirPods |
| 🏠 Appliances | `냉장고` | refrigerator | Samsung, LG |
| 🏠 Laundry | `세탁기` | washing machine | Samsung, LG |
| 🧹 Cleaning | `청소기` | vacuum cleaner | Samsung, LG, Dyson |
| 💄 Beauty | `화장품` | cosmetics | Korean skincare brands |
| 💄 Skincare | `스킨케어` | skincare | COSRX, Laneige, Innisfree |
| ☀️ Sunscreen | `선크림` | sunscreen | Korean SPF products |
| 💊 Health | `비타민` | vitamins | multivitamins, Vitamin C, D |
| 💪 Fitness | `프로틴` | protein powder | whey protein, plant protein |
| 🐟 Omega-3 | `오메가3` | omega-3 | fish oil supplements |
| 👟 Fashion | `운동화` | sneakers | Nike, Adidas, New Balance |
| 👜 Accessories | `가방` | bags | backpacks, handbags, crossbody |
| 🥚 Groceries | `계란` | eggs | fresh eggs (Rocket Fresh) |
| 🥛 Dairy | `우유` | milk | fresh milk, soy milk |
| 🍚 Staples | `쌀` | rice | Korean rice brands |
| 🪑 Furniture | `가구` | furniture | desks, chairs, beds, shelves |
| 💡 Lighting | `조명` | lighting | LED lamps, desk lamps |

> **Tip:** Combine multiple queries to cover a category comprehensively: `["노트북", "태블릿", "맥북", "노트북 가방", "노트북 쿨러"]`

***

### Use Cases

#### 1. Competitive Price Monitoring

Track competitor pricing on Coupang: `currentPrice` vs `originalPrice`, discount percentages, and Rocket delivery eligibility. Monitor specific products by ID with scheduled runs.

#### 2. Seller/Marketplace Intelligence

Distinguish between **1P (Coupang direct)** and **3P (marketplace)** sellers. Identify which categories Coupang competes in directly vs. where third-party sellers dominate. The `sellerType` and `isCoupangSeller` fields make this trivial.

#### 3. Korean Market Entry Research

For brands entering the Korean market: analyze category landscape, price points, competitor brands, Rocket eligibility rates, and review volumes. Full category path navigation helps understand market structure.

#### 4. Product Catalog Enrichment

Feed structured Coupang product data (brand, category, price, options, images) into your own catalog, PIM system, or market intelligence dashboard.

#### 5. Rocket Delivery Analysis

Track which products qualify for Rocket Delivery and Rocket Fresh — key differentiators in Korean e-commerce. Analyze delivery estimates to understand fulfillment patterns.

#### 6. Review & Reputation Monitoring

Monitor review counts and ratings over time with scheduled runs. Track rating changes, review velocity, and competitive reputation benchmarks.

#### 7. Dropshipping & Arbitrage

Identify price gaps between Coupang and other platforms. Compare 1P vs 3P pricing on identical products. Extract product options for multi-SKU arbitrage analysis.

#### 8. AI & Machine Learning

Feed structured Korean e-commerce data into:

- Price prediction models
- Product categorization classifiers
- Demand forecasting systems
- Korean NLP training datasets

***

### Example Output

```json
{
    "productId": "734218905",
    "title": "곰곰 동물복지 신선한 대란 특란 30구",
    "brand": "곰곰",
    "categoryPath": "식품 > 축산/계란 > 계란",
    "url": "https://www.coupang.com/vp/products/734218905",
    "currentPrice": "8990",
    "originalPrice": "10900",
    "discountPercent": "18",
    "unitPrice": "300원/구",
    "currency": "KRW",
    "rocketDelivery": "true",
    "rocketFresh": "true",
    "deliveryEstimate": "내일(수) 도착 보장",
    "sellerType": "1P",
    "sellerName": "쿠팡",
    "isCoupangSeller": "true",
    "rating": "4.8",
    "reviewCount": "48210",
    "options": "[{\"id\":\"30구\",\"label\":\"특란 30구\",\"price\":8990,\"inStock\":true},{\"id\":\"60구\",\"label\":\"특란 60구\",\"price\":16900,\"inStock\":false}]",
    "images": "[\"https://thumbnail.coupangcdn.com/thumbnails/remote/...\"]",
    "searchQuery": "계란",
    "scrapedAt": "2026-06-22T13:00:00.000Z"
}
```

***

### Performance & Cost

| Mode | Speed | Memory | Proxy |
|------|-------|--------|-------|
| Product IDs only | ~15-20 products/sec | ~256 MB | KR Residential |
| Search + details | ~5-10 products/sec | ~256 MB | KR Residential |
| List-only (`includeDetails: false`) | ~30-40 products/sec | ~128 MB | KR Residential |

**Typical cost**: 100 products with full detail enrichment = ~40-60 seconds. KR residential proxy data transfer is the main cost driver.

***

### Anti-Bot Strategy

Coupang is one of Korea's most protected e-commerce platforms:

- **Geo-gating**: Blocks all non-Korean IPs → KR residential proxy required
- **Client-side rendering**: Prices and delivery data rendered via JavaScript
- **Device fingerprinting**: Detects non-browser requests
- **Rate limiting**: Aggressive throttling on burst requests

Our strategy:

- **Korean residential IPs** via Apify's KR proxy pool
- **Browser TLS fingerprint** via `got-scraping` (Chrome impersonation)
- **Internal API access**: `/vp/products/{id}` returns structured JSON without JS rendering
- **Adaptive delays**: 500ms default, with retry on rate-limit responses
- **Moderate concurrency**: 6 parallel requests to stay under thresholds

***

### Seller Types Explained

| Type | Code | Description |
|------|------|-------------|
| **1P** | First-party | Sold directly by Coupang. Higher trust, Rocket-eligible, Coupang handles fulfillment. |
| **3P** | Third-party | Marketplace seller. Ships independently. May or may not be Rocket-eligible. |

The `isCoupangSeller` boolean makes this distinction instantly queryable in your dataset.

***

### Integration

#### JavaScript

```javascript
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('haketa/coupang-scraper').call({
    queries: ['노트북', '태블릿'],
    maxItems: 200,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
```

#### Python

```python
from apify_client import ApifyClient
client = ApifyClient(token='YOUR_TOKEN')
run = client.actor('haketa/coupang-scraper').call(run_input={
    'queries': ['노트북', '태블릿'],
    'maxItems': 200,
})
items = client.dataset(run['defaultDatasetId']).list_items().items
```

#### CLI

```bash
apify call haketa/coupang-scraper \
    --input '{"queries":["노트북"],"maxItems":100}'
```

***

### FAQ

**Q: I don't know Korean. Can I still use this?**
A: Absolutely. Copy keywords from the [Korean Keywords Cheat Sheet](#-korean-keywords--cheat-sheet) above. Prices (₩), discounts (%), ratings (1-5), and seller types (1P/3P) are numeric — no Korean needed to understand them. Product titles are in Korean but you can translate them with any tool.

**Q: Why am I getting no results from search?**
A: Two most common reasons: (1) The KR residential proxy had a temporary issue — retry. (2) Your query is too niche — try a broader Korean keyword. "노트북" (laptop) always works as a test.

**Q: Do I need a Korean proxy?**
A: Yes. Coupang blocks all non-Korean IP addresses. The default KR residential proxy is preconfigured in the input — you don't need to do anything.

**Q: Which mode should I use — queries, productIds, or startUrls?**
A: **queries** if you're exploring a category (e.g. "what laptops are on Coupang?"). **productIds** if you already know which products you want to track. **startUrls** if you've already filtered on Coupang's website and want to scrape those exact results.

**Q: How do I find product IDs?**
A: Three ways: (1) Run a search with `queries` first — the output dataset has `productId` for every product. (2) Browse coupang.com (with Korean VPN) — the product ID is in the URL: `coupang.com/vp/products/3003727499`. (3) Google: `site:coupang.com/vp/products 노트북`.

**Q: What's the difference between 1P and 3P sellers?**
A: 1P means Coupang sells the product directly (fulfilled by Coupang, Rocket-eligible). 3P means a third-party merchant sells through Coupang's marketplace. The `isCoupangSeller` field makes this a simple true/false check.

**Q: Why should I use `includeDetails: false` for large searches?**
A: Detail mode visits each product page individually, which is slower and uses more proxy data. For a 500-product market scan, `includeDetails: false` takes ~20 seconds. With details on, it takes ~2 minutes. Use list-only first, then enrich the products you care about.

**Q: Can I search in English?**
A: Yes, Coupang accepts English — but Korean queries consistently return 3-10x more results. An English search for "laptop" might return 200 products; "노트북" returns 2,000+.

**Q: What's Rocket Delivery?**
A: Coupang's free next-day delivery service (similar to Amazon Prime). Rocket-eligible products are marked `rocketDelivery: true`. Rocket Fresh is the grocery version (dawn delivery). Both flags are extracted automatically.

**Q: How many products can I scrape in one run?**
A: Set `maxItems: 0` for unlimited, or set a specific number. Coupang shows ~60 products per search page. With `maxPagesPerQuery: 10`, you get ~600 products per keyword. Multiple queries multiply this.

**Q: Are all product options and variants extracted?**
A: The detail page returns publicly visible options (size, color, quantity) with per-option pricing and stock status. Options hidden behind login or region-gating are not accessible.

**Q: Can I schedule this to run automatically?**
A: Yes — use Apify's Scheduler to run daily, weekly, or custom cron. Perfect for price monitoring, stock tracking, and competitive intelligence.

***

### Legal & Responsible Use

This actor extracts publicly available product data from Coupang. Users are responsible for complying with Coupang's Terms of Service and applicable Korean e-commerce regulations. Data is intended for legitimate business intelligence, competitive analysis, and market research.

***

*The most data-rich Coupang scraper on Apify — internal API enrichment with seller type, product options, and Rocket delivery intelligence.*

***

### Tips & Best Practices

- **Use Korean keywords for best results** — Coupang's search engine is optimized for Korean. Common categories: 노트북 (laptop), 태블릿 (tablet), 건강식품 (health food), 화장품 (cosmetics), 패션 (fashion), 가전 (appliances)
- **Combine queries + product IDs** — Use keyword search to discover products, then add their IDs for recurring monitoring with `productIds`
- **Start with list-only mode** — Set `includeDetails: false` for fast market scans (30-40 products/sec), then enrich top products via `productIds`
- **Keep concurrency moderate** — 6 parallel requests stays under Coupang's rate-limit thresholds. Increase to 8-10 for product ID-only runs
- **Schedule for recurring monitoring** — Daily/weekly scheduled runs for price tracking, stock monitoring, and review velocity analysis
- **Filter by seller type** — After export, filter your dataset by `isCoupangSeller: true` to see Coupang's own inventory vs marketplace
- **Monitor KR proxy cost** — Korean residential proxy data transfer is the main cost driver. Use `includeDetails: false` for cost-sensitive runs

***

### Common Search Queries

#### Korean keywords (recommended):

```
노트북, 태블릿, 스마트폰, 이어폰, TV, 냉장고, 세탁기, 청소기, 에어컨
화장품, 스킨케어, 선크림, 마스크팩, 헤어, 향수
건강식품, 비타민, 프로틴, 오메가3, 유산균
패션, 운동화, 가방, 시계, 의류
식품, 과일, 채소, 쌀, 계란, 우유, 김치
주방, 침구, 가구, 조명, 수납
```

#### English keywords (also work):

```
laptop, tablet, vitamin, cosmetics, fashion, protein, shoes, bag
```

***

### Data Quality Notes

| Field | Typical Fill Rate | Notes |
|-------|------------------|-------|
| `currentPrice` | 95%+ | Almost all products have prices |
| `originalPrice` | 60-70% | Only when discounted |
| `discountPercent` | 60-70% | Calculated when original exists |
| `rocketDelivery` | 70-80% | Rocket-eligible products |
| `rocketFresh` | 5-10% | Groceries only |
| `sellerType` | 90%+ | From internal API |
| `brand` | 70-80% | From structured data |
| `categoryPath` | 80-90% | From internal API |
| `options` | 30-40% | Only products with variants |
| `rating` | 60-70% | Products with reviews |
| `reviewCount` | 60-70% | Products with reviews |

***

### Platform Comparison

| Feature | Coupang | Amazon | Coupang Advantage |
|---------|---------|--------|-------------------|
| Next-day delivery | Rocket Delivery | Prime | Higher density in Korea (70% of population in Seoul metro) |
| Grocery delivery | Rocket Fresh (dawn) | Amazon Fresh | Dawn delivery standard (7am) |
| First-party share | ~40% 1P | ~25% 1P | Coupang sells more directly |
| Mobile penetration | 95%+ mobile orders | ~70% | Mobile-first platform |
| Review culture | Extremely detailed | Variable | Korean consumers write very detailed reviews |

***

### Known Limitations

- **KR proxy required**: All requests must originate from Korean IPs. Non-KR IPs receive 403.
- **Internal API rate**: The `/vp/products/{id}` endpoint has undocumented rate limits. Stay at 500ms+ delays.
- **Geo-gated content**: Some seller details and pricing may vary by region within Korea.
- **HTML search fallback**: If JSON-LD is missing from search pages, the HTML parser extracts fewer fields initially (enriched later via detail API).
- **Login-gated data**: Coupang Wow membership prices, personalized discounts, and member-only reviews are not accessible.

# Actor input Schema

## `queries` (type: `array`):

Keywords to search on Coupang (Korean or English). Each query runs independently. Examples: 노트북, 삼성 TV, vitamin, laptop

## `productIds` (type: `array`):

Direct Coupang product IDs to fetch full detail via internal API. Faster and richer than keyword search.

## `startUrls` (type: `array`):

Coupang search result URLs or product page URLs. Overrides queries and productIds.

## `includeDetails` (type: `boolean`):

Fetch full product detail via internal API: brand, options/variants, seller type (1P/3P), category path, delivery estimate, full image gallery. Slower per product but much richer.

## `includeReviews` (type: `boolean`):

Include review count, average rating and rating distribution from detail API.

## `maxItems` (type: `integer`):

Maximum products to scrape. 0 = no limit.

## `maxPagesPerQuery` (type: `integer`):

Maximum search result pages per keyword (~60 products/page). 0 = no limit.

## `requestDelay` (type: `integer`):

Delay between requests. 500-1000ms recommended for Coupang.

## `maxConcurrency` (type: `integer`):

Parallel detail API requests. Keep 5-8.

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

Korean residential proxy REQUIRED — Coupang geo-gates to Korea. Datacenter and non-KR IPs are blocked.

## Actor input object example

```json
{
  "queries": [
    "노트북"
  ],
  "productIds": [],
  "startUrls": [],
  "includeDetails": true,
  "includeReviews": true,
  "maxItems": 50,
  "maxPagesPerQuery": 2,
  "requestDelay": 500,
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "KR"
  }
}
```

# Actor output Schema

## `productId` (type: `string`):

Coupang product ID

## `title` (type: `string`):

Product title (Korean)

## `brand` (type: `string`):

Brand/manufacturer name

## `categoryPath` (type: `string`):

Category tree (e.g. 식품 > 축산 > 계란)

## `url` (type: `string`):

Product page URL

## `currentPrice` (type: `string`):

Current selling price (KRW)

## `originalPrice` (type: `string`):

Original/list price (KRW)

## `discountPercent` (type: `string`):

Discount percentage

## `unitPrice` (type: `string`):

Price per unit (e.g. 300원/구)

## `currency` (type: `string`):

Currency code (KRW)

## `rocketDelivery` (type: `string`):

Rocket delivery eligible (true/false)

## `rocketFresh` (type: `string`):

Rocket Fresh (groceries) eligible

## `deliveryEstimate` (type: `string`):

Delivery time estimate (e.g. 내일 도착)

## `sellerType` (type: `string`):

1P (Coupang direct) / 3P (marketplace)

## `sellerName` (type: `string`):

Seller/merchant name

## `isCoupangSeller` (type: `string`):

Sold directly by Coupang (1P)

## `rating` (type: `string`):

Average product rating (1-5)

## `reviewCount` (type: `string`):

Total number of reviews

## `options` (type: `string`):

Product options/variants (JSON array)

## `images` (type: `string`):

Product image URLs (JSON array)

## `searchQuery` (type: `string`):

Search keyword used

## `scrapedAt` (type: `string`):

ISO scrape timestamp

# 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 = {
    "queries": [
        "노트북"
    ],
    "productIds": [],
    "startUrls": [],
    "maxItems": 50,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "KR"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/coupang-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 = {
    "queries": ["노트북"],
    "productIds": [],
    "startUrls": [],
    "maxItems": 50,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "KR",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/coupang-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 '{
  "queries": [
    "노트북"
  ],
  "productIds": [],
  "startUrls": [],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "KR"
  }
}' |
apify call haketa/coupang-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Coupang Scraper — Product Listings, Rocket, Seller & Reviews",
        "description": "Scrape Coupang Korea largest e-commerce platform. Extract product listings with price, discount, Rocket delivery, seller type (1P/3P), product options, category path, reviews and full details. Search by keyword or product ID. KR residential proxy required.",
        "version": "0.1",
        "x-build-id": "6ofmqslIGP1AnL6wb"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~coupang-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-coupang-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/haketa~coupang-scraper/runs": {
            "post": {
                "operationId": "runs-sync-haketa-coupang-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/haketa~coupang-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-coupang-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": {
                    "queries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Keywords to search on Coupang (Korean or English). Each query runs independently. Examples: 노트북, 삼성 TV, vitamin, laptop",
                        "items": {
                            "type": "string"
                        }
                    },
                    "productIds": {
                        "title": "Product IDs",
                        "type": "array",
                        "description": "Direct Coupang product IDs to fetch full detail via internal API. Faster and richer than keyword search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Coupang search result URLs or product page URLs. Overrides queries and productIds.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "includeDetails": {
                        "title": "Include product details",
                        "type": "boolean",
                        "description": "Fetch full product detail via internal API: brand, options/variants, seller type (1P/3P), category path, delivery estimate, full image gallery. Slower per product but much richer.",
                        "default": true
                    },
                    "includeReviews": {
                        "title": "Include review data",
                        "type": "boolean",
                        "description": "Include review count, average rating and rating distribution from detail API.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max products",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum products to scrape. 0 = no limit.",
                        "default": 100
                    },
                    "maxPagesPerQuery": {
                        "title": "Max pages per query",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum search result pages per keyword (~60 products/page). 0 = no limit.",
                        "default": 2
                    },
                    "requestDelay": {
                        "title": "Request delay (ms)",
                        "minimum": 200,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Delay between requests. 500-1000ms recommended for Coupang.",
                        "default": 500
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Parallel detail API requests. Keep 5-8.",
                        "default": 6
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Korean residential proxy REQUIRED — Coupang geo-gates to Korea. Datacenter and non-KR IPs are blocked.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "KR"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
