Back to articles
Shopee Product Scraper API: eCommerce Data for Southeast Asian Markets

Shopee Product Scraper API: eCommerce Data for Southeast Asian Markets

via Dev.to WebdevDonny Nguyen

Shopee has 343 million monthly visits across Southeast Asia. If you're building ecommerce tools for SEA markets, you need this data. The Shopee Product Scraper API extracts product listings, prices, ratings, seller info, and sales volumes. Quick Start curl -X GET "https://shopee-product-scraper1.p.rapidapi.com/shopee-product-scraper/search?query=mechanical+keyboard&limit=10" \ -H "X-RapidAPI-Key: YOUR_API_KEY" \ -H "X-RapidAPI-Host: shopee-product-scraper1.p.rapidapi.com" Node.js — Price Monitor const axios = require ( ' axios ' ); async function trackPrices ( keywords ) { const report = []; for ( const keyword of keywords ) { const { data } = await axios . get ( ' https://shopee-product-scraper1.p.rapidapi.com/shopee-product-scraper/search ' , { params : { query : keyword , limit : 20 }, headers : { ' X-RapidAPI-Key ' : process . env . RAPIDAPI_KEY , ' X-RapidAPI-Host ' : ' shopee-product-scraper1.p.rapidapi.com ' } } ); const prices = data . results . map ( p => p . price ); report .

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles