Discover/coupang.com API
live

coupang.com APIwww.coupang.com

Access Coupang product recommendations and paginated reviews via API. Get pricing, discount rates, ratings, delivery info, and rating distributions.

Endpoints
2
Updated
1mo ago
Try it
Maximum number of products to return (5-15).
Comma-separated Coupang product IDs to get recommendations for.
api.parse.bot/scraper/4efec4ec-d019-4a6a-a431-fb9d14f77a19/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 2 totalclick to expand

Get recommended products based on one or more product IDs. Returns products with full pricing, ratings, discount rates, delivery info, and social proof indicators.

Input
ParamTypeDescription
max_countintegerMaximum number of products to return (5-15).
product_idsstringComma-separated Coupang product IDs to get recommendations for.
Response
{
  "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.

Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Coupang have an official developer API?+
Coupang operates the Coupang Developers program for marketplace sellers at https://developers.coupang.com, which is focused on order management and seller operations rather than general product or review data access.
What does the rating_summary object include, and how granular is it?+
The rating_summary object returned by get_product_reviews includes average_rating, total_reviews, and a rating_distribution array. The distribution array breaks down review counts at each star level, so you can see exactly how many 1-star, 2-star, 3-star, 4-star, and 5-star reviews a product has received.
Can I search for Coupang products by keyword or category?+
Not currently. The API covers product recommendations (by product ID) and product reviews (by product ID). It does not expose keyword search or category browsing. You can fork this API on Parse and revise it to add a keyword search endpoint.
Is seller information or seller ratings available in the review or recommendation responses?+
Not currently. The recommendation response includes product-level fields like sale_price, discount_rate, and rocket_delivery, while reviews include reviewer identity and helpful_count. Seller-level data is not part of either response. You can fork this API on Parse and revise it to add seller data if needed.
How does review sorting work in get_product_reviews?+
The sort_by parameter accepts three values: ORDER_SCORE_ASC (lowest-rated first), ORDER_SCORE_DESC (highest-rated first), and DATE_DESC (most recent first). If sort_by is omitted, the default sort behavior is applied. Combine this with the page and size parameters to paginate through any sort order.
Page content last updated . Spec covers 2 endpoints from www.coupang.com.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.
Coupang API – Products, Reviews & Recommendations · Parse