Shopee Brasil product data API
ShopAPIS extracts structured Shopee Brasil product data — item ID, shop ID, price and discount, stock, sold count, tier variations (size/color), ratings, images and shipping — and returns it as clean JSON in BRL. Shopee is Brazil’s #1 marketplace by order volume and #2 by traffic (~116M monthly visits), with a vast long-tail of local and imported Asian SKUs. ShopAPIS handles Shopee’s mobile-app data structure and its tier_variations model so you get a flat, query-ready record per listing.
Shopee Brasil grew GMV more than 25% in 2025 and is now profitable in Brazil (Sea Ltd filings ). Its catalog depth in fashion, home, electronics and beauty makes it the platform where Brazil’s price-sensitive long tail actually lives.
Why Shopee Brasil data is hard to get
Shopee runs Sea-grade anti-bot defenses — among the most aggressive in Latin America. The richest data lives in its mobile API, which is signed, token-gated and rate-limited, and the web storefront renders prices, discounts and stock client-side. Variant pricing is encoded in a tier_variations matrix that must be cross-referenced against a models array to resolve the actual price and stock of each size/color combination. Flash-sale and voucher pricing shift in real time. ShopAPIS resolves the variant matrix, captures the live discounted price and normalizes everything into the standard schema.
Data fields returned
- Identity — item ID, shop ID, title, category path
- Pricing — current price, original price, discount %, currency (BRL), flash-sale flag
- Variants —
tier_variations(e.g. color, size) resolved to per-model price and stock - Availability — stock per variant, total stock
- Social proof — rating average, rating count, sold count
- Seller — shop ID, shop name, official-store / Shopee Mall flag, location
- Shipping — free-shipping flag, estimated shipping fee
- Media — image gallery, video where present
Sample response
{
"platform": "shopee_brasil",
"item_id": 22041500876,
"shop_id": 330118842,
"url": "https://shopee.com.br/product/330118842/22041500876",
"title": "Fone de Ouvido Bluetooth TWS Sem Fio à Prova d'Água",
"category": ["Eletrônicos", "Áudio", "Fones de Ouvido"],
"price": 49.90,
"original_price": 129.90,
"discount_pct": 62,
"flash_sale": true,
"currency": "BRL",
"tier_variations": [
{ "name": "Cor", "options": ["Preto", "Branco"] }
],
"models": [
{ "name": "Preto", "price": 49.90, "stock": 312 },
{ "name": "Branco", "price": 52.90, "stock": 88 }
],
"rating": { "average": 4.7, "count": 18450 },
"sold_count": 52000,
"shop": { "id": 330118842, "name": "TechStore Oficial", "is_official": true },
"shipping": { "free_shipping": true, "fee": 0.00 },
"images": ["https://cf.shopee.com.br/file/abc123"]
}Markets and domains covered
Shopee Brasil operates at shopee.com.br, serving the Brazilian market in Portuguese with BRL pricing, including a large cross-border (CBT) tier of imported listings shipped from Asia. ShopAPIS resolves listings by URL or by shop ID and item ID.
Use cases
- Long-tail price monitoring — track flash-sale and voucher pricing on fast-moving SKUs (/solutions/price-monitoring).
- Variant-level inventory tracking — monitor stock per color/size across a catalog (/solutions/inventory-tracking).
- Competitive intelligence — benchmark Shopee sellers against MercadoLibre and Amazon Brasil (/solutions/competitive-intelligence).
- Review analytics — mine rating counts and sold-count signals for demand sensing (/solutions/review-analytics).
Shopee’s discounted price and per-variant stock are only resolvable from the live tier_variations and models data. ShopAPIS captures the real-time discounted figure, not the struck-through reference price.