coupang.com APIwww.coupang.com ↗
Access Coupang product recommendations and paginated reviews via API. Get pricing, discount rates, ratings, delivery info, and rating distributions.
curl -X GET 'https://api.parse.bot/scraper/4efec4ec-d019-4a6a-a431-fb9d14f77a19/get_product_recommendations?max_count=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Get recommended products based on one or more product IDs. Returns products with full pricing, ratings, discount rates, delivery info, and social proof indicators.
| Param | Type | Description |
|---|---|---|
| max_count | integer | Maximum number of products to return (5-15). |
| product_ids | string | Comma-separated Coupang product IDs to get recommendations for. |
{
"type": "object",
"fields": {
"title": "string - recommendation section title",
"products": "array of product objects with product_id, name, sale_price, original_price, discount_rate, rating, review_count, rocket_delivery, sold_out, and more",
"total_products": "integer - number of products returned"
},
"sample": {
"data": {
"title": "이 상품을 검색한 다른 분들이 함께 본 상품",
"products": [
{
"url": "https://www.coupang.com/vp/products/7991194687?vendorItemId=89258837666",
"name": "갤럭시북4 15.6 코어I5 13세대 가성비 노트북 한컴오피스팩 동봉, R-A51AG, WIN11 Home, 16GB, 2TB, 그레이",
"image": "//thumbnail.coupangcdn.com/thumbnails/remote/292x292ex/image/vendor_inventory/image_audit/stage/manual/9a2eb0c319f4b87cd8390adc93edc9e4cf7c66d5e9beda295228cdbecae7_1775524860474.jpg",
"rating": 5,
"item_id": 22212816707,
"currency": "KRW",
"sold_out": false,
"attributes": "R-A51AG, WIN11 Home, 16GB, 2TB, 그레이",
"has_coupon": false,
"product_id": 7991194687,
"rocket_wow": false,
"sale_price": 1739000,
"review_count": 3554,
"social_proof": "만족했어요 3천+",
"discount_rate": 25,
"free_shipping": false,
"product_title": "갤럭시북4 15.6 코어I5 13세대 가성비 노트북 한컴오피스팩 동봉",
"original_price": 2319000,
"vendor_item_id": 89258837666,
"rocket_delivery": false
}
],
"total_products": 5
},
"status": "success"
}
}About the coupang.com API
The Coupang API exposes 2 endpoints for retrieving product data from South Korea's largest e-commerce platform. Use get_product_recommendations to pull up to 15 recommended products—including sale price, original price, discount rate, Rocket Delivery status, and review count—based on one or more product IDs. Use get_product_reviews to fetch paginated, sortable reviews with full rating summaries and individual review metadata.
Product Recommendations
The get_product_recommendations endpoint accepts a comma-separated list of Coupang product_ids and an optional max_count (5–15) to control the result size. Each product object in the response includes product_id, name, sale_price, original_price, discount_rate, rating, review_count, and a rocket_delivery boolean indicating eligibility for Coupang's fast-shipping tier. The response also surfaces a title field describing the recommendation section and a total_products count.
Product Reviews
The get_product_reviews endpoint requires a product_id and supports page, size, and sort_by parameters. Sorting options are ORDER_SCORE_ASC, ORDER_SCORE_DESC, and DATE_DESC. Each review object includes review_id, rating, title, content, reviewer, review_date, helpful_count, item_name, and image_count. The response wraps individual reviews with a rating_summary object containing average_rating, total_reviews, and a rating_distribution array breaking down counts per star level—useful for building histogram-style displays.
Pagination and Coverage
Review pagination is handled through page and total_pages fields, allowing you to walk through large review sets systematically. The API covers Coupang's Korean marketplace catalog. Product identifiers are Coupang-native numeric IDs; you'll need a valid product_id to query either endpoint.
- Build a product comparison tool using discount_rate and sale_price fields from recommendations
- Aggregate review sentiment by walking paginated reviews sorted by DATE_DESC
- Display star-distribution histograms using the rating_distribution array in rating_summary
- Filter recommended products by rocket_delivery status for fast-shipping use cases
- Track price changes over time by periodically querying recommendations for the same product_ids
- Identify top-rated alternatives using rating and review_count from recommendation results
- Surface most-helpful reviews first using ORDER_SCORE_DESC sort on get_product_reviews
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.