Path Parameters
The Shopee shop ID. You can find this in search results or extract it from a product URL (-i.{shop_id}.{item_id}).
Query Parameters
Shopee storefront code where the product is listed.Examples: sg, my, th, vn
Response
Storefront the product was fetched from.
Full product object.
Current price (normalized from Shopee’s 1e5 scale).
Original price before discount (nullable).
Discount label (nullable).
Average star rating (0-5).
Per-star count breakdown.
Number of reviews/comments.
All product image CDN URLs.
Full product description.
Product attribute key/value pairs.
Per-SKU variations with their own price, stock, name.
Variation axes (e.g. colour, size) with options.
Whether the seller is a Shopee official shop.
Listing status (e.g. normal).
Listing creation time (Unix).
Listing creation time (ISO 8601 UTC).
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.