DEV Community

Donny Nguyen
Donny Nguyen

Posted on

Shopee Product Scraper API: eCommerce Data for Southeast Asian Markets

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"
Enter fullscreen mode Exit fullscreen mode

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.push({
      keyword,
      avg: (prices.reduce((a,b)=>a+b,0)/prices.length).toFixed(2),
      min: Math.min(...prices), max: Math.max(...prices)
    });
  }
  return report;
}

trackPrices(['wireless earbuds', 'phone case', 'laptop stand'])
  .then(r => console.table(r));
Enter fullscreen mode Exit fullscreen mode

Use Cases

  1. Price Intelligence — Monitor competitor pricing across Shopee categories
  2. Product Research — Find trending products with high sales volume
  3. Seller Analytics — Track top sellers and their pricing strategies

Free tier included. Try the Shopee Product Scraper API on RapidAPI


Related APIs by Donny Digital

Digital Products: Prompt Packs, Notion Templates & More on Gumroad

👉 Browse all APIs on RapidAPI

Top comments (0)