# 11st Scraper (`voyn/11st-scraper`) Actor

Scrape product listings and product details from 11st.co.kr (11번가) at scale using 11st Scraper.

- **URL**: https://apify.com/voyn/11st-scraper.md
- **Developed by:** [Voyn Software](https://apify.com/voyn) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## 🛒 11st.co.kr Scraper – Apify Actor

#### Scrape Product Listings & Product Details from 11번가 (11st.co.kr) Automatically

This Apify Actor allows you to **scrape product data from 11st.co.kr (11번가)** using **Playwright**.\
It supports:

- **Listing/Search pages**
- **Category pages**
- **Product detail pages**
- **Automatic pagination**
- **Automatic detail scraping**
- **Residential proxy support**
- **Full dataset export in JSON, CSV, Excel, API, webhooks, etc.**

Perfect for **price tracking**, **market research**, **e-commerce analytics**, **dropshipping**, and **SEO data extraction**.

***

### ⭐ What This 11st Scraper Can Extract

From each product page, the scraper saves:

| Field | Description |
|-------|-------------|
| productUrl | Full URL of the product page |
| inputUrl | The URL of the listing/search page where this product was found |
| productTitle | Product name/title |
| images | Array of all product image URLs |
| prices | Base price + option prices |
| categories | Breadcrumb category path |
| shippingDetails | Shipping & delivery information |
| rating | Average rating |
| commentsCount | Number of reviews/comments |

***

### 🚀 Features

- **Scrapes listing/search results**
- **Extracts product links dynamically**
- **Scrapes all products on each page BEFORE pagination**
- **Handles infinite pagination loops safely**
- **Extracts rich product data**
- **Works with Apify residential proxies (KR recommended)**
- **Playwright-based rendering (bypasses JS-heavy obstacles)**

***

### 📥 Input Example

```json
{
  "input_urls": [
    "https://search.11st.co.kr/pc/total-search?kwd=%EB%B2%A0%EC%98%A4%EC%82%AC%EC%9A%B4%EB%93%9C&tabId=TOTAL_SEARCH"
  ],
  "max_results": 50,
  "proxy_config": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

***

### 📤 Sample Output (Dataset Item)

```json
{
  "inputUrl": "https://search.11st.co.kr/pc/total-search?kwd=...",
  "productUrl": "https://www.11st.co.kr/products/6218927117",
  "productTitle": "XXXX A5 Wireless Speaker",
  "images": [
    "https://...",
    "https://..."
  ],
  "prices": [
    {
      "label": "base",
      "priceText": "2,400,000 원",
      "priceValue": "2400000"
    }
  ],
  "categories": "음향가전 > 스피커 > 블루투스 스피커",
  "shippingDetails": "무료배송 / 로젠택배",
  "rating": 4.7,
  "commentsCount": 30
}
```

***

### 🛠 Use Cases

#### ✔ Price monitoring

#### ✔ Market research

#### ✔ Competitor intelligence

#### ✔ E-commerce automation

#### ✔ SEO data extraction

***

### 📡 Access Data via API

```bash
https://api.apify.com/v2/datasets/<DATASET_ID>/items?format=json
```

***

### 📝 Notes

- Korean **residential proxies** recommended.
- `max_results` helps control cost/performance.
- Categories extracted from `.c_product_category_path .selected`.

***

### 🏁 Summary

The **11st.co.kr Scraper** is a powerful Apify Actor for extracting complete, structured product data from one of Korea’s top e‑commerce websites. Ideal for developers, researchers, e‑commerce teams, and data-driven automation.

# Actor input Schema

## `input_urls` (type: `array`):

Listing/search pages or product detail URLs from 11st.co.kr.

## `proxy_config` (type: `object`):

Select proxies to be used by your crawler.

## `max_results` (type: `integer`):

Maximum number of product detail pages to scrape.

## Actor input object example

```json
{
  "input_urls": [
    "https://search.11st.co.kr/pc/total-search?kwd=%25EB%25B2%25A0%25EC%2598%25A4%25EC%2582%25AC%25EC%259A%25B4%25EB%2593%259C"
  ],
  "proxy_config": {
    "useApifyProxy": false
  },
  "max_results": 5
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "input_urls": [
        "https://search.11st.co.kr/pc/total-search?kwd=%25EB%25B2%25A0%25EC%2598%25A4%25EC%2582%25AC%25EC%259A%25B4%25EB%2593%259C"
    ],
    "proxy_config": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("voyn/11st-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 = {
    "input_urls": ["https://search.11st.co.kr/pc/total-search?kwd=%25EB%25B2%25A0%25EC%2598%25A4%25EC%2582%25AC%25EC%259A%25B4%25EB%2593%259C"],
    "proxy_config": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("voyn/11st-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 '{
  "input_urls": [
    "https://search.11st.co.kr/pc/total-search?kwd=%25EB%25B2%25A0%25EC%2598%25A4%25EC%2582%25AC%25EC%259A%25B4%25EB%2593%259C"
  ],
  "proxy_config": {
    "useApifyProxy": false
  }
}' |
apify call voyn/11st-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/GCU2m5Bg4KcUiXpTW/builds/IonDbMA4zRtTPgc3s/openapi.json
