11st Products Crawler
Pricing
from $2.90 / 1,000 results
11st Products Crawler
Monitor prices, discounts, ratings & reviews on 11st (11번가), Korea's top marketplace. Includes seller info, delivery details & ad detection. Sort by price, popularity or sales. Fast API-based, no browser needed. 11번가 가격·할인·평점·리뷰 모니터링. 판매자, 배송, 광고 판별 포함. 가격·인기·판매순 정렬. API 기반 고속 수집.
Pricing
from $2.90 / 1,000 results
Rating
0.0
(0)
Developer
KIM SEUNG KOOK
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
2 days ago
Last modified
Categories
Share
Scrape product listings from 11st.co.kr (11번가), one of Korea's largest e-commerce platforms.
This Actor extracts 29 fields per product using 11st's internal API — no browser required. Fast, lightweight, and cost-efficient.
Pricing
This Actor uses pay-per-event pricing:
- $5.00 per 1,000 results ($0.005 per product)
- Platform usage costs are included
- No charge if the Actor returns zero results
- You can set a cost limit per run using
maxTotalChargeUsd
What it does
- Searches 11st.co.kr for products by keyword
- Extracts 29 fields including prices, ratings, seller info, delivery, and discount details
- Supports Korean and English search keywords
- Filters by price range, sort order, and ad exclusion
- Automatically removes duplicate products
- Outputs clean JSON/CSV ready for analysis or delivery
Features
- API-based — Direct API calls, no browser/Playwright needed
- 29+ data fields — Far more than DOM-parsing alternatives
- 7 sort options — Ranking, popularity, price (asc/desc), sales, reviews, newest
- Ad detection — Each product tagged with
isAdfield; optionalexcludeAdsfilter - Price filtering — Set min/max price in KRW
- Deduplication — Automatic
productId-based dedup across pages - Lightweight — ~256MB memory, fast execution
Input parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
searchKeywords | string[] | required | Search keywords (Korean/English) |
maxItemsPerKeyword | integer | 50 | Max unique products per keyword (1–10,000) |
sortBy | string | "ranking" | Sort order (see options below) |
minPrice | integer | — | Minimum price filter (KRW) |
maxPrice | integer | — | Maximum price filter (KRW) |
excludeAds | boolean | false | Exclude sponsored products |
requestDelay | number | 2 | Delay between requests in seconds (1–10) |
proxyConfiguration | object | Apify Proxy | Proxy settings |
Sort options
| Value | Description |
|---|---|
ranking | 11st Ranking (11번가 랭킹순) — default |
popularity | Popularity (11번가 인기순) |
price_asc | Price: Low to High (낮은 가격순) |
price_desc | Price: High to Low (높은 가격순) |
sales | Best Selling (누적 판매순) |
reviews | Most Reviews (많은 리뷰순) |
latest | Newest (최신순) |
Output example
{"productId": "8034140878","title": "ASUS 비보북 S 16 OLED M5606KA-RI052W...","price": 1577890,"originalPrice": 1678600,"discountRate": "5%","directDiscountAmount": 100710,"currency": "KRW","rating": 4.9,"ratingMax": 5,"reviewCount": 12,"brandName": "에이수스","isOfficialBrand": true,"sellerBadgeType": "OFFICIAL","sellerNickName": "ASUS공식총판","thumbnailUrl": "https://cdn.011st.com/11dims/resize/248/11src/product/8034140878/B.webp","isSoldOut": false,"isLowestPrice": true,"is30DayLowest": false,"isAd": false,"listType": "COMMON","isDeal": false,"hasOptionPrice": false,"deliveryFee": "무료","deliveryETA": "4/11(토) 도착","benefitPoints": "20,170","catalogId": "434667258","productUrl": "https://www.11st.co.kr/products/8034140878","searchKeyword": "노트북","scrapedAt": "2026-04-10T10:45:00Z"}
Use cases
- Price monitoring — Track competitor pricing across categories
- Market research — Analyze product trends, pricing distribution, and seller landscape
- Competitive analysis — Compare ad vs. organic product rankings
- Data delivery — Export to CSV/Excel for client reports
Integration examples
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_API_TOKEN")run = client.actor("ficuslink/11st-products-crawler").call(run_input={"searchKeywords": ["노트북", "운동화"],"maxItemsPerKeyword": 100,"sortBy": "price_asc",})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(f"{item['title']} - {item['price']}원")
Google Sheets
Use the Apify Google Sheets integration to automatically export results to a spreadsheet.
한국어 사용 가이드
입력 설정
- 검색 키워드 (
searchKeywords): 검색할 키워드를 입력합니다. 한국어, 영어 모두 지원합니다. - 키워드당 최대 수집 건수 (
maxItemsPerKeyword): 키워드당 최대 추출할 상품 수입니다. 중복은 자동 제거됩니다. - 정렬 기준 (
sortBy): 검색 결과 정렬 방식을 선택합니다 (랭킹순, 인기순, 가격순, 판매순, 리뷰순, 최신순). - 광고 제외 (
excludeAds):true로 설정하면 광고 상품을 제외하고 자연 노출 상품만 수집합니다.
출력 필드
총 29개 필드가 추출됩니다. 주요 필드:
price: 최종 판매가 (원)originalPrice: 할인 전 원가isAd: 광고 상품 여부 (true/false)isLowestPrice: 11번가 내 최저가 여부deliveryFee: 배송비 ("무료", "3,000" 등)
FAQ
Q: How many products can I scrape per run? A: Up to 10,000 per keyword. For larger volumes, split across multiple keywords.
Q: Does this Actor use a browser? A: No. It calls 11st's internal API directly, making it fast and lightweight.
Q: What happens if the site blocks requests? A: The Actor retries up to 8 times with exponential backoff. Using Korean residential proxies reduces blocking risk.
Q: Are ad products included by default?
A: Yes. Each product has an isAd field so you can filter them. Set excludeAds: true to exclude them automatically.
Disclaimer
This tool is intended for legitimate purposes such as market research, price monitoring, and competitive analysis. Users are responsible for complying with applicable laws and the target website's Terms of Service. This Actor does not download or redistribute any copyrighted content — it only extracts publicly visible product metadata and thumbnail URLs.