Loading...
Apify Actor

11st.co.kr Scraper (11번가)

Scrape product listings and product details from 11st.co.kr (11번가) at scale using Playwright. Supports listing/search pages, category pages, product detail pages, automatic pagination, and automatic detail scraping.

What it does

This actor extracts product data from 11st.co.kr (Korea’s 11번가) using a real browser (Playwright). Add one or more listing/search URLs, set max_results, and it will collect product links, scrape all products on each page before paginating, and safely handle pagination loops. Perfect for price tracking, market research, e-commerce analytics, dropshipping workflows, and SEO data extraction. :contentReference[oaicite:0]{index=0}

Key data fields

  • Product URL (productUrl)
  • Input/listing URL where product was found (inputUrl)
  • Product Title (productTitle)
  • Images array (images)
  • Prices: base + option prices (prices)
  • Categories / breadcrumb path (categories)
  • Shipping details (shippingDetails)
  • Rating (rating)
  • Comments / reviews count (commentsCount)

How to use

  1. Copy an 11st listing/search URL (or category URL) you want to scrape.
  2. Paste it into input_urls (you can add multiple URLs).
  3. Set max_results to control output volume and cost.
  4. Run the actor, then export your dataset as JSON/CSV/Excel (or consume via API/webhooks).

Sample Output 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
}