Coupang Price Scraper
Pricing
Pay per usage
Go to Apify Store
Detail Data (per product, when
Coupang Price Scraper
Scrape product prices, discounts, delivery info, seller data, and member-only pricing from Coupang. Supports bulk keyword search and category URL input with sorting options.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
OrbitData Labs
Maintained by Community
Actor stats
1
Bookmarked
6
Total users
3
Monthly active users
10 days ago
Last modified
Categories
Share
Scrape product prices, discounts, delivery info, seller data, and member-only pricing from Coupang — South Korea's largest e-commerce platform.
Features
- Bulk scraping — Enter multiple search keywords and/or category URLs at once
- Logged-in pricing — Access member-exclusive discounts (WOW member discounts, coupon discounts) by providing Coupang credentials
- Keyword search & category browsing — Scrape by search query or category URL
- Sorting — Coupang Ranking, Price: Low to High, Price: High to Low, Best Selling, Newest
- RSC data extraction — Extracts structured JSON from React Server Components payload (faster and more reliable than HTML parsing)
- Product detail scraping — Detailed price breakdown, card discounts, cashback, other sellers, return/refurbished item info
- Internal API integration — Uses Coupang's internal APIs (
quantity-info,other-seller-info) for comprehensive price data
About Login (Optional)
Login is completely optional. You do NOT need to provide your Coupang credentials to use this scraper.
| With Login | Without Login | |
|---|---|---|
| Product listing | Member-exclusive discounted prices | Regular (non-discounted) prices |
| WOW member discounts | Included | Not available |
| Coupon discounts | Included | Not available |
| Card benefit info | Included | Included |
| Product details | Full detail with member pricing | Full detail with regular pricing |
Privacy Notice
- Your credentials are never stored, logged, or shared. They are only used at runtime to log into Coupang within the browser session, and are discarded when the run ends.
- No data is sent to the developer. All scraping happens within your own Apify actor run environment.
- If you are uncomfortable providing credentials, simply leave the email and password fields empty — the scraper will still work and return regular (non-member) prices.
Output Fields
List Data (per product)
| Field | Description |
|---|---|
productId | Coupang product ID |
title | Product name |
salePrice | Current sale price (member price when logged in) |
basePrice | Original price |
discountRate | Discount percentage |
discountType | Discount type (WOW coupon, instant discount, etc.) |
badges | Delivery badges (rocket_wow, today, dawn, etc.) |
deliveryText | Delivery info text |
ratingAvg | Average rating (1-5) |
ratingCount | Number of reviews |
usedProductInfo | New/return item counts and lowest price |
_source | Which keyword or URL this product came from |
Detail Data (per product, when maxDetailProducts > 0)
| Field | Description |
|---|---|
detail.price.finalPrice | Final price after all discounts |
detail.price.couponPrice | Coupon discount amount |
detail.price.couponDesc | Coupon description |
detail.cardDiscount | Card instant discount info |
detail.cashback | Coupang cashback info |
detail.offerSummary | New/return item counts with lowest price |
detail.sellers | List of all sellers with prices |
Input Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
email | string | — | Coupang login email (optional) |
password | string | — | Coupang login password (optional) |
keywords | string[] | [] | List of search keywords (bulk input supported) |
categoryUrls | string[] | [] | List of category URLs (bulk input supported) |
sortBy | enum | ranking | Sort order |
maxPages | integer | 1 | Pages to scrape per target |
maxDetailProducts | integer | 5 | Products for detail scraping per target |
includeRawData | boolean | false | Include raw RSC data |
proxyConfiguration | object | — | Apify proxy settings |
Example Input
Without login (regular prices)
{"keywords": ["laptop"],"sortBy": "sales","maxPages": 2,"maxDetailProducts": 10}
With login (member-discounted prices)
{"email": "your@email.com","password": "your-password","keywords": ["laptop"],"sortBy": "sales","maxPages": 2,"maxDetailProducts": 10}
Bulk scraping (multiple keywords + categories)
{"keywords": ["laptop", "airpods", "monitor", "keyboard"],"categoryUrls": ["https://www.coupang.com/np/categories/178255","https://www.coupang.com/np/categories/186764"],"sortBy": "ranking","maxPages": 3,"maxDetailProducts": 5}
Notes
- Proxy recommended — Coupang uses Akamai Bot Manager. Residential proxies significantly reduce blocking risk.
- Rate limiting — Built-in delays between page requests and product detail scraping to avoid detection.
- Bulk support — Each keyword and category URL is scraped independently. The
_sourcefield in output identifies which target each product came from.