Coupang Products Crawler avatar

Coupang Products Crawler

Pricing

$7.99 / 1,000 results

Go to Apify Store
Coupang Products Crawler

Coupang Products Crawler

Extract structured product data from Coupang, Korea's largest e-commerce platform. Get prices, ratings, images, delivery info & more for any search query. Parallel processing, automatic retries, clean JSON output. Perfect for price monitoring, market research & competitive analysis in Korean market.

Pricing

$7.99 / 1,000 results

Rating

5.0

(4)

Developer

Amit

Amit

Maintained by Community

Actor stats

9

Bookmarked

325

Total users

15

Monthly active users

12 days ago

Last modified

Share

๐Ÿ›’ Coupang Products Crawler

Extract product listings from Coupang.com (Korea's largest e-commerce site) by search keyword or category ID. Returns structured JSON with 30+ fields per product โ€” title, brand, prices, ratings, delivery flags, sponsorship flags, and more.

๐Ÿš€ What does this Actor do?

This actor scrapes product listings from Coupang's web search and category pages. You can:

  • Provide one or more search queries (Korean or English) โ€” searchQueries
  • Provide one or more category IDs โ€” categoryIds
  • Mix both in a single run

The actor handles proxy rotation and retries automatically โ€” you just give it the queries or category IDs and download the dataset.

๐Ÿ—พ๏ธ Example Input

Search by keyword (Korean works best โ€” Coupang is Korean-locale):

{
"searchQueries": ["์•ผ๊ตฌ ๋ชจ์ž", "๋…ธํŠธ๋ถ", "wireless headphones"],
"maxPagesPerQuery": 1
}

Browse by category:

{
"categoryIds": ["178255", "175532"],
"maxPagesPerQuery": 3
}

Both at once:

{
"searchQueries": ["์ปคํ”ผ"],
"categoryIds": ["189408"],
"maxPagesPerQuery": 2
}

๐Ÿ“ฆ What data do you get?

Every product is returned with the following fields:

{
"product_id": "9508465677",
"item_id": "28333543319",
"vendor_item_id": "95285862563",
"title": "์ŠคํŠธ๋ฆฌ์˜จ ๋น…์‚ฌ์ด์ฆˆ ๋ฌด์ง€ ๋Œ€๋‘ ๋ณผ์บก",
"brand": "์ŠคํŠธ๋ฆฌ์˜จ",
"sales_price": 5900,
"original_price": 30000,
"unit_price": null,
"currency": "KRW",
"discount_rate": "80%",
"rating_avg": 5,
"rating_count": 143,
"thumbnail": "https://thumbnail.coupangcdn.com/.../volcap.png",
"images": ["https://thumbnail.coupangcdn.com/.../volcap.png"],
"delivery_badge": "https://image.coupangcdn.com/.../logo_rocket_merchant.png",
"promise_delivery": null,
"shipping_cost": null,
"is_free_shipping": false,
"is_rocket": true,
"is_rocket_fresh": false,
"is_tomorrow_delivery": true,
"is_overseas": false,
"is_fresh": false,
"is_adult": false,
"is_sponsored": false,
"is_sold_out": false,
"is_available": true,
"is_gift_card": false,
"is_digital": false,
"description": null,
"category_id": null,
"category_path": null,
"search_query": "์•ผ๊ตฌ ๋ชจ์ž",
"search_rank": 1,
"product_url": "https://www.coupang.com/vp/products/9508465677?...",
"scraped_at": "2026-06-09T13:42:24.433Z"
}

Field reference

FieldTypeNotes
product_idstringCoupang's stable product ID
item_id, vendor_item_idstringItem / vendor identifiers (extracted from product URL)
title, brandstringProduct name and best-guess brand (first token of title)
sales_pricenumberCurrent sale price in KRW
original_pricenumberPre-discount price (when shown)
unit_pricestringPer-unit pricing like "(1๊ฐœ๋‹น 7,150์›)" when shown
currencystringAlways "KRW"
discount_ratestringE.g. "42%"
rating_avgnumberAverage review rating (0-5)
rating_countnumberTotal review count
thumbnailstringPrimary product image URL
imagesarrayArray of product image URLs
delivery_badgestringURL of the rocket/tomorrow/global badge icon
promise_deliverystringE.g. "๋‚ด์ผ(์ˆ˜) ๋„์ฐฉ" when shown
shipping_cost, is_free_shippingnumber / bool0 and true when free shipping detected
is_rocket, is_rocket_fresh, is_tomorrow_delivery, is_overseasboolDelivery type flags from product badges
is_sponsoredboolTrue for sponsored listings (ads above results)
is_sold_out, is_availableboolStock signals
category_idstringSet when the product was found via a category browse
search_querystringSet when the product was found via a search query
search_ranknumberPosition in the organic search results (null for ads)
product_urlstringFull Coupang product page URL
scraped_atstringISO timestamp when the page was extracted

๐Ÿฆ– How to use

  1. Enter at least one search query or category ID in the input.
  2. Optionally set maxPagesPerQuery (default 1).
  3. Run the actor.
  4. Download the results from the Dataset tab or fetch them via the API.

Note: A typical run completes in 15โ€“30 seconds. The actor handles transient failures internally with automatic retries.

๐Ÿ” Key Features

  • Keyword search and category browsing in the same run
  • Pagination โ€” maxPagesPerQuery walks pages 1..N per query/category
  • Automatic retries with proxy rotation โ€” runs just work
  • Structured output โ€” 30+ fields per product, all flags pre-computed

๐Ÿ“‹ Input Parameters

ParameterTypeDefaultDescription
searchQueriesarray of strings[]Search keywords. Korean queries return the most results.
categoryIdsarray of strings[]Coupang category IDs to browse.
maxPagesPerQueryinteger1Pages to walk per search/category (1โ€“50).
fetchDetailsbooleanfalseReserved โ€” will visit each product page for description and full images gallery.
proxyConfigurationobject(managed)Optional proxy override. Defaults are tuned for Coupang.
IDCategory
208725Fashion / Accessories
189408Foods
114190Household
175532Consumer Electronics
174637Beauty
164352Home Decor
219079Maternity / Baby / Kids
317675Sports / Leisure
166051Kitchen
317676Toys / Hobbies
162889Automotive
114191Pet Supplies
164687Stationery / Office
305433Wellness / Health Foods
317674Books / Music / DVDs

๐Ÿ“ฉ Feedback

Found a bug or have ideas? Open an issue on the actor's Apify page โ€” happy to improve it.