Shopee Scraper API
Search products, fetch full product detail, pull reviews with star and media filters, list category items, and walk the full category tree from Shopee — Southeast Asia’s largest online marketplace. The API handles authentication, anti-bot bypass, session warmup, and marketplace routing automatically.Key Features
11 Marketplaces
Indonesia, Philippines, Vietnam, Brazil, Malaysia, Thailand, Singapore, Taiwan, Colombia, Chile, and Mexico.
Anti-Bot Bypass
Real-browser session warmup seeds Shopee’s
SPC_* cookies + TLS fingerprint, so the guarded /api/v4/ endpoints just work.Rich Product Data
Variants, tier options, per-SKU models, ratings breakdown, stock, sold counts, images, attributes, and shop info.
Structured Data
Clean JSON with prices normalized from Shopee’s 1e5-scaled integers and raw values preserved.
Country Proxies
Requests are routed through residential proxies matching the target storefront for accurate local pricing.
SDK Support
First-class support via the ScrapeBadger Node.js and Python SDKs.
Supported Marketplaces
Shopee operates across 11 country storefronts. Use themarket query parameter to target a specific one.
| Market | Domain | Currency | Market | Domain | Currency |
|---|---|---|---|---|---|
:indonesia: id | shopee.co.id | IDR | :philippines: ph | shopee.ph | PHP |
:vietnam: vn | shopee.vn | VND | :brazil: br | shopee.com.br | BRL |
:malaysia: my | shopee.com.my | MYR | :thailand: th | shopee.co.th | THB |
:singapore: sg | shopee.sg | SGD | :taiwan: tw | shopee.tw | TWD |
:colombia: co | shopee.com.co | COP | :chile: cl | shopee.cl | CLP |
:mexico: mx | shopee.com.mx | MXN |
Quick Start
Endpoints
| Endpoint | Method | Description |
|---|---|---|
/v1/shopee/search | GET | Search the Shopee catalog with sorting |
/v1/shopee/product/{shop_id}/{item_id} | GET | Full product detail by shop + item ID |
/v1/shopee/product/{shop_id}/{item_id}/reviews | GET | Product reviews with star/media filters |
/v1/shopee/category/{category_id}/items | GET | List products within a category |
/v1/shopee/categories | GET | Full recursive category tree |
/v1/shopee/markets | GET | List all supported marketplaces |
Credit Costs
| Endpoint | Cost |
|---|---|
| Search products | 5 credits |
| Get product detail | 5 credits |
| Get reviews | 5 credits |
| Category items | 5 credits |
| List categories (tree) | 2 credits |
| List markets | 0 credits |
| Failed requests | 0 credits |
Authentication
All requests require your API key in theX-API-Key header:
Anti-Bot Handling
Shopee gates its/api/v4/ JSON endpoints behind anti-fraud headers (af-ac-enc-sz-token, x-sap-ri) produced by a bytecode VM that is impractical to mint offline. Rather than block on that, ScrapeBadger warms a genuine Shopee session in a real Chrome browser — seeding the SPC_* cookies and a valid TLS fingerprint Shopee’s API validates — and serves the GET endpoints against that warm session. You never need to manage proxies, cookies, sessions, or request signing.
For accurate pricing and availability, requests are routed through residential proxies in the storefront’s country. This is handled automatically based on the
market parameter.Next Steps
Search Products
Full API reference for searching the Shopee catalog
Get Product Detail
Retrieve full product detail for a specific item

