Coupang Scraper
Spider read coupang.com in 113 ms without a browser and returned 113 lines of clean markdown, including the section "오늘 쿠팡이 엄선한 가장 HOT한 상품".
마이쿠팡](https://mc.coupang.com/ssr/desktop/order/list)장바구니](https://cart.coupang.com/cartView.pang)## 오늘의 발견### 오늘 쿠팡이 엄선한 가장 HOT한 상품!구매하기](https://shop.coupang.com/A00067881/242913?source=brandstore_display_ads&adType=DA&eventId=RWZT97toDNcAu1Fn&from=home_C2&traid=home_C2&trcid=11751518)구매하기](https://shop.coupang.com/clio/253949?source=brandstore_display_ads&adType=DA&eventId=7SPEVcFiNu1DRiHt&from=home_C2&traid=home_C2&trcid=11754914)구매하기](https://coupang.com/vp/products/7225189423?itemId=18319675609&vendorItemId=90776061353&from=home_C2&traid=home_C2&trcid=4750540)구매하기](https://shop.coupang.com/ottogi/244568?source=brandstore_display_ads&adType=DA&eventId=4gXItqRhVJ2WPipX&from=home_C2&traid=home_C2&trcid=11749708)구매하기](https://pages.coupang.com/p/174501?adType=DA&eventId=3ONqWQYBnOwAUr7m&from=home_C2&traid=home_C2&trcid=11754114)구매하기](https://coupang.com/vp/products/7225189423?itemId=18319675609&vendorItemId=87489288057&from=home_C2&traid=home_C2&trcid=4750543)구매하기](https://shop.coupang.com/A00147289/242340?source=brandstore_display_ads&adType=DA&eventId=ayjnZOocscE4X0j4&from=home_C2&traid=home_C2&trcid=11754042)구매하기](https://coupang.com/vp/products/7225189423?itemId=18319675609&vendorItemId=5351802654&from=home_C2&traid=home_C2&trcid=4750545)구매하기](https://coupang.com/vp/products/7225189423?itemId=18319675609&vendorItemId=80324048129&from=home_C2&traid=home_C2&trcid=4750546) The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on coupang.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.coupang.com/np/search?q=laptop&channel=user");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
captcha: "solve",
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.coupang.com/np/search?q=laptop&channel=user");
await page.content(12000);
const data = await page.evaluate(`(() => {
const items = [];
document.querySelectorAll(".search-product").forEach(el => {
const name = el.querySelector(".name")?.textContent?.trim();
const price = el.querySelector(".price-value")?.textContent?.trim();
const rating = el.querySelector(".rating")?.textContent?.trim();
const rocket = !!el.querySelector(".rocket-icon");
if (name) items.push({ name, price, rating, rocketDelivery: rocket });
});
return JSON.stringify({ total: items.length, items: items.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What coupang.com costs to scrape.
The capture above cost $0.000357 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More International scrapers.
Mercado Libre Scraper
Extract product listings, seller ratings, pricing in local currencies, and shipping data from Mercado Libre.
Rakuten Scraper
Extract product listings, store ratings, cashback offers, and pricing data from Rakuten Japan marketplace.
Flipkart Scraper
Extract product listings, seller data, pricing in INR, and delivery estimates from Flipkart India store.
Start scraping coupang.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.