Coupang Products Scraper avatar

Coupang Products Scraper

Under maintenance

Pricing

$7.00 / 1,000 results

Go to Apify Store
Coupang Products Scraper

Coupang Products Scraper

Under maintenance

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.

Pricing

$7.00 / 1,000 results

Rating

0.0

(0)

Developer

CRW

CRW

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

4 days ago

Last modified

Share

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

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

Input Parameters

ParameterTypeRequiredDefaultDescription
qstringYesSearch keyword
max_itemsintegerNo100Maximum number of products to collect (max: 1000)
pageintegerNo1Starting page number
sorterstringNoscoreDescSort order (see values below)
componentstringNoCoupang category ID to narrow search results to a specific category (see below)

Sorter values

ValueDescription
saleCountDescBest sellers
salePriceAscPrice: low to high
salePriceDescPrice: high to low
latestAscNewest arrivals
scoreDescHighest rated (default)

Example Output

{
"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

FieldDescription
nameProduct name
imageProduct thumbnail URL
urlProduct page URL
offers.priceCurrent selling price (KRW)
offers.availabilityStock status
aggregateRating.ratingValueAverage rating (1–5), null if no reviews
aggregateRating.reviewCountNumber of reviews, null if no reviews
is_adWhether the product is a sponsored listing
rankDisplay rank within the page (if shown)
sequence_noAbsolute sequence number across all collected pages
original_priceOriginal price before discount; same as offers.price if no discount
discount_rateDiscount rate (e.g. "21%"); "0%" if no discount
delivery_feeDelivery fee text (e.g. "배송비 2,500원"); null if free shipping
delivery_dateEstimated delivery date text
cashbackCashback/reward points text (e.g. "최대 990원 적립")
is_rocketWhether fulfilled by Coupang Rocket delivery
is_rocket_merchantWhether fulfilled by Rocket Merchant
is_freshWhether 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 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:

{
"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