# Coupang Products Scraper (`crw/coupang-crawling`) Actor

Extract product data from Coupang, Korea's largest e-commerce platform. Collect prices, ratings, images, delivery info, cashback and more by keyword. Supports sorting, category filtering, and bulk collection up to 1,000 items. Perfect for price monitoring, market research, and competitive analysis.

- **URL**: https://apify.com/crw/coupang-crawling.md
- **Developed by:** [CRW](https://apify.com/crw) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 1 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$7.00 / 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.

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 Search Results Scraper

Collect product listings from Coupang search results at scale. Enter a search keyword, set how many products you need, and get back structured data including pricing, ratings, ad status, and ranking.

### What does this Actor do?

This actor searches Coupang by keyword and collects product listings across multiple pages — up to the number of items you specify. Results are saved incrementally, so you get data even if the run ends early.

### Example Input

```json
{
  "q": "memory card",
  "max_items": 200,
  "sorter": "salePriceAsc"
}
````

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `q` | string | Yes | — | Search keyword |
| `max_items` | integer | No | `50` | Maximum number of products to collect (max: 1000) |
| `page` | integer | No | `1` | Starting page number |
| `sorter` | string | No | `scoreDesc` | Sort order (see values below) |
| `component` | string | No | — | Coupang category ID to narrow search results to a specific category (see below) |

#### Sorter values

| Value | Description |
|-------|-------------|
| `saleCountDesc` | Best sellers |
| `salePriceAsc` | Price: low to high |
| `salePriceDesc` | Price: high to low |
| `latestAsc` | Newest arrivals |
| `scoreDesc` | Highest rated (default) |

### Example Output

```json
{
  "name": "삼성 마이크로SD EVO Plus 256GB",
  "image": "https://thumbnail.coupangcdn.com/...",
  "url": "https://www.coupang.com/vp/products/1234567?itemId=9876543&vendorItemId=12345678",
  "offers": {
    "price": "19800",
    "priceCurrency": "KRW",
    "availability": "https://schema.org/InStock"
  },
  "aggregateRating": {
    "ratingValue": 4.8,
    "reviewCount": 12453
  },
  "is_ad": false,
  "rank": 3,
  "sequence_no": 3,
  "original_price": "24900",
  "discount_rate": "21%",
  "delivery_fee": null,
  "delivery_date": "내일(일) 도착 예정 오늘출발",
  "cashback": "최대 990원 적립",
  "is_rocket": true,
  "is_rocket_merchant": false,
  "is_fresh": false
}
```

#### Output fields

| Field | Description |
|-------|-------------|
| `name` | Product name |
| `image` | Product thumbnail URL |
| `url` | Product page URL |
| `offers.price` | Current selling price (KRW) |
| `offers.availability` | Stock status |
| `aggregateRating.ratingValue` | Average rating (1–5), `null` if no reviews |
| `aggregateRating.reviewCount` | Number of reviews, `null` if no reviews |
| `is_ad` | Whether the product is a sponsored listing |
| `rank` | Display rank within the page (if shown) |
| `sequence_no` | Absolute sequence number across all collected pages |
| `original_price` | Original price before discount; same as `offers.price` if no discount |
| `discount_rate` | Discount rate (e.g. `"21%"`); `"0%"` if no discount |
| `delivery_fee` | Delivery fee text (e.g. `"배송비 2,500원"`); `null` if free shipping |
| `delivery_date` | Estimated delivery date text |
| `cashback` | Cashback/reward points text (e.g. `"최대 990원 적립"`) |
| `is_rocket` | Whether fulfilled by Coupang Rocket delivery |
| `is_rocket_merchant` | Whether fulfilled by Rocket Merchant |
| `is_fresh` | Whether fulfilled by Rocket Fresh (fresh food delivery) |

#### Using the component parameter

The `component` parameter filters search results to a specific category on Coupang. Since Coupang has a large number of categories, a full list cannot be provided here. To find the right value:

1. Go to [coupang.com](https://www.coupang.com) and search for a keyword
2. Select a category from the left sidebar or the breadcrumb navigation
3. Check the URL — the `component` value will appear as a query parameter (e.g., `component=497059`)
4. Copy that value and use it as the `component` input

Example URL:

```
https://www.coupang.com/np/search?q=memory+card&component=497059&sorter=scoreDesc
```

Example input with component:

```json
{
  "q": "memory card",
  "component": "497059",
  "max_items": 100,
  "sorter": "scoreDesc"
}
```

### How to use

1. Enter a search keyword in the `q` field
2. Set `max_items` to control how many products to collect
3. Choose a `sorter` to control the order of results
4. Run the actor and download results from the Dataset tab

### Notes

- Results are saved incrementally as the run progresses
- Runtime varies by keyword and number of pages; expect 1–3 minutes per page
- For large requests (500+ items), set the actor timeout to at least 60 minutes under Run options to avoid early termination

# Actor input Schema

## `q` (type: `string`):

The keyword to search for on Coupang (e.g. "memory card", "노트북").

## `max_items` (type: `integer`):

Maximum number of products to collect. Cannot exceed 1000.

## `sorter` (type: `string`):

Controls the order in which search results are returned.

## `component` (type: `string`):

Coupang category ID to narrow results to a specific category. Find this value in the Coupang URL after selecting a category (e.g. component=497059).

## `page` (type: `integer`):

Page number to start collecting results from.

## Actor input object example

```json
{
  "max_items": 50,
  "sorter": "scoreDesc",
  "page": 1
}
```

# Actor output Schema

## `api` (type: `string`):

REST API endpoint to download the dataset programmatically.

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("crw/coupang-crawling").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("crw/coupang-crawling").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 '{}' |
apify call crw/coupang-crawling --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Coupang Products Scraper",
        "description": "Extract product data from Coupang, Korea's largest e-commerce platform. Collect prices, ratings, images, delivery info, cashback and more by keyword. Supports sorting, category filtering, and bulk collection up to 1,000 items. Perfect for price monitoring, market research, and competitive analysis.",
        "version": "0.0",
        "x-build-id": "RTpRF0FkhkEbZ4LSq"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crw~coupang-crawling/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crw-coupang-crawling",
                "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/crw~coupang-crawling/runs": {
            "post": {
                "operationId": "runs-sync-crw-coupang-crawling",
                "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/crw~coupang-crawling/run-sync": {
            "post": {
                "operationId": "run-sync-crw-coupang-crawling",
                "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",
                "required": [
                    "q"
                ],
                "properties": {
                    "q": {
                        "title": "Search keyword",
                        "type": "string",
                        "description": "The keyword to search for on Coupang (e.g. \"memory card\", \"노트북\")."
                    },
                    "max_items": {
                        "title": "Maximum number of items",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of products to collect. Cannot exceed 1000.",
                        "default": 50
                    },
                    "sorter": {
                        "title": "Sort order",
                        "enum": [
                            "scoreDesc",
                            "saleCountDesc",
                            "salePriceAsc",
                            "salePriceDesc",
                            "latestAsc"
                        ],
                        "type": "string",
                        "description": "Controls the order in which search results are returned.",
                        "default": "scoreDesc"
                    },
                    "component": {
                        "title": "Category ID (component)",
                        "type": "string",
                        "description": "Coupang category ID to narrow results to a specific category. Find this value in the Coupang URL after selecting a category (e.g. component=497059)."
                    },
                    "page": {
                        "title": "Starting page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Page number to start collecting results from.",
                        "default": 1
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
