Skip to main content

Path Parameters

shop_id
integer
required
The Shopee shop ID. You can find this in search results or extract it from a product URL (-i.{shop_id}.{item_id}).
item_id
integer
required
The Shopee item ID.

Query Parameters

market
string
default:"sg"
Shopee storefront code where the product is listed.Examples: sg, my, th, vn

Response

market
string
Storefront the product was fetched from.
product
object
Full product object.

Example Response

{
  "market": "sg",
  "product": {
    "item_id": 23456789012,
    "shop_id": 345678,
    "name": "TWS Bluetooth Earbuds Noise Cancelling",
    "price": 29.9,
    "price_min": 29.9,
    "price_max": 39.9,
    "price_before_discount": 49.9,
    "discount": "40%",
    "currency": "SGD",
    "rating_star": 4.8,
    "rating_count_total": 12480,
    "rating": { "5": 10800, "4": 1200, "3": 300, "2": 100, "1": 80 },
    "stock": 320,
    "sold": 540,
    "historical_sold": 18230,
    "liked_count": 2104,
    "comment_count": 9450,
    "view_count": 412000,
    "image": "https://cf.shopee.sg/file/abc123",
    "images": ["https://cf.shopee.sg/file/abc123", "https://cf.shopee.sg/file/def456"],
    "description": "Hi-Fi sound, ENC noise cancelling, 30h battery...",
    "brand": "Generic",
    "categories": ["Mobile & Gadgets", "Audio", "Earphones"],
    "attributes": [{ "name": "Warranty", "value": "1 Year" }],
    "models": [
      { "model_id": 99887766, "name": "Black", "price": 29.9, "stock": 200 },
      { "model_id": 99887767, "name": "White", "price": 31.9, "stock": 120 }
    ],
    "tier_variations": [{ "name": "Color", "options": ["Black", "White"] }],
    "shop_location": "Singapore",
    "is_official_shop": true,
    "item_status": "normal",
    "ctime_utc": 1716960000,
    "created_at": "2026-05-29T00:00:00Z"
  }
}
Each product detail request costs 5 credits. Failed requests are not charged.