Get Shopee product details(By url)
On this page
Information available through this API includes
- Basic product information (title/category/brand/price/comment counts, etc.)
- Product properties
- Main images/video
- Description images/html
- Shop information (Shop id/location/type, etc.)
- Logistics information (delivery origin/postage)
- SKU attributes (name/thumbnail)
- SKU price and stock
- Sales count
Basic Information
Method | API URL |
---|---|
POST | http://api.noxapi.com/shopee/v1/item/detail-by-url |
Request Parameter
Header
Field | Type | Description | Required |
---|---|---|---|
Authorization | string |
Your apiToken. |
true |
Query
Body
Content-Type: application/json |
Parameter | Type | Description | Required |
---|---|---|---|
url | string |
product url. |
true |
Security Auth
TIP
Please go to Console-Account Center to get your apiToken
Include your apiToken in the request headers using the Authorization field. Please refer to the examples below.
Request Example
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://api.noxapi.com/shopee/v1/item/detail-by-url",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'url' => 'https://shopee.com.my/product/140500145/9385530978'
]),
CURLOPT_HTTPHEADER => [
"Authorization: YOUR_API_TOKEN",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
?>
import axios from 'axios';
const options = {
method: 'POST',
url: 'http://api.noxapi.com/shopee/v1/item/detail-by-url',
headers: {
Authorization: 'YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
data: {url: 'https://shopee.com.my/product/140500145/9385530978'}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
import requests
url = "http://api.noxapi.com/shopee/v1/item/detail-by-url"
payload = {"url": "https://shopee.com.my/product/140500145/9385530978"}
headers = {
"Authorization": "YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("http://api.noxapi.com/shopee/v1/item/detail-by-url"))
.header("Authorization", "YOUR_API_TOKEN")
.header("Content-Type", "application/json")
.method("POST", HttpRequest.BodyPublishers.ofString("{\"url\":\"https://shopee.com.my/product/140500145/9385530978\"}"))
.build();
HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://api.noxapi.com/shopee/v1/item/detail-by-url"
payload := strings.NewReader("{\"url\":\"https://shopee.com.my/product/140500145/9385530978\"}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "YOUR_API_TOKEN")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
Response Example
{
"code": 200,
"msg": "success",
"data": {
"item_id": 22342619928,
"product_url": "https://shopee.com.my/product/454052120/22342619928",
"title": "4in1 Vakum Super Cordless Car Vacuum Cleaner 15000Pa Mini Vacuum Cleaner Vakum Cleaner Vacuum Kereta Rechargable 车载吸尘器",
"main_imgs": [
"https://cf.shopee.com.my/file/my-11134207-7r98p-lllrdqt4ibfo1c",
"https://cf.shopee.com.my/file/my-11134207-7r98q-lllrdqt4jq04d3",
"https://cf.shopee.com.my/file/my-11134207-7r98u-lllrdqt4l4kkc5",
"https://cf.shopee.com.my/file/my-11134207-7r98u-lllrjka1nufk2b",
"https://cf.shopee.com.my/file/my-11134207-7r990-lllrjka1p9000e",
"https://cf.shopee.com.my/file/my-11134207-7r992-lllrjka1qnkg1f",
"https://cf.shopee.com.my/file/my-11134207-7r991-lllrjka1s24w05",
"https://cf.shopee.com.my/file/my-11134207-7r991-lllrjka1tgpc35",
"https://cf.shopee.com.my/file/my-11134207-7r98s-lllrjka1uv9s6c"
],
"video_url": "https://cvf.shopee.com.my/file/dbad39c7c4ec1ed2318d46c94856f743",
"currency": "MYR",
"brand": null,
"brand_id": null,
"fe_category_path": [
{
"catid": 11000824,
"display_name": "Home Appliances",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11000892,
"display_name": "Vacuum",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 11000893,
"display_name": "Vacuum Cleaner",
"no_sub": true,
"is_default_subcat": false
}
],
"category_path": [
{
"catid": 100010,
"display_name": "Home Appliances",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 100038,
"display_name": "Small Household Appliances",
"no_sub": false,
"is_default_subcat": false
},
{
"catid": 100177,
"display_name": "Vacuum Cleaners & Floor Care Appliances",
"no_sub": true,
"is_default_subcat": false
}
],
"category_id": "100177",
"attributes": [
{
"name": "Warranty Duration",
"value": "6 Months",
"id": 100121,
"is_timestamp": false,
"brand_option": null,
"val_id": 810,
"url": null
},
{
"name": "Warranty Type",
"value": "Supplier Warranty",
"id": 100370,
"is_timestamp": false,
"brand_option": null,
"val_id": 2437,
"url": null
},
{
"name": "Air Flow",
"value": "350CFM",
"id": 100267,
"is_timestamp": false,
"brand_option": null,
"val_id": 5189,
"url": null
},
{
"name": "Vacuum Cleaner & Floor Care Type",
"value": "Handheld Vacuums",
"id": 100367,
"is_timestamp": false,
"brand_option": null,
"val_id": 2450,
"url": null
},
{
"name": "Corded/ Cordless",
"value": "Cordless",
"id": 100286,
"is_timestamp": false,
"brand_option": null,
"val_id": 2081,
"url": null
},
{
"name": "Vacuum Cleaner Features",
"value": "HEPA Filtration",
"id": 100368,
"is_timestamp": false,
"brand_option": null,
"val_id": 2491,
"url": null
},
{
"name": "Suction Power",
"value": "18000Pa",
"id": 100991,
"is_timestamp": false,
"brand_option": null,
"val_id": 5204,
"url": null
},
{
"name": "Country of Origin",
"value": "Import",
"id": 100037,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null
},
{
"name": "Power Consumption",
"value": "120W",
"id": 100355,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null
},
{
"name": "Weight",
"value": "330g",
"id": 100095,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null
},
{
"name": "Dimension (L x W x H)",
"value": "22 x 16 x 6.7",
"id": 100942,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null
},
{
"name": "Input Voltage",
"value": "7.4V",
"id": 100323,
"is_timestamp": false,
"brand_option": null,
"val_id": 0,
"url": null
}
],
"flash_sale": {
"price": {
"single_value": 2600000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"price_before_discount": {
"single_value": 5000000,
"range_min": -1,
"range_max": -1,
"price_mask": null
},
"lowest_past_price": null,
"sold": 31,
"end_time": 1708581600,
"coin_earn_label": null,
"show_extra_discount_label": false,
"promotion_id": 203565941600257,
"discount_text": "%!(EXTRA int32=0)"
},
"is_pre_order": false,
"rating_star": 4.745155393053016,
"has_lowest_price_guarantee": false,
"sold_count": 6067,
"global_sold_count": 6067,
"local_sold_count": 6067,
"sold": null,
"liked_count": 1723,
"product_props": {
"Warranty Duration": "6 Months",
"Warranty Type": "Supplier Warranty",
"Air Flow": "350CFM",
"Vacuum Cleaner & Floor Care Type": "Handheld Vacuums",
"Corded/ Cordless": "Cordless",
"Vacuum Cleaner Features": "HEPA Filtration",
"Suction Power": "18000Pa",
"Country of Origin": "Import",
"Power Consumption": "120W",
"Weight": "330g",
"Dimension (L x W x H)": "22 x 16 x 6.7",
"Input Voltage": "7.4V"
},
"price_info": {
"price": "26.0",
"price_min": "26.0",
"price_max": "26.0"
},
"details": "4in1 Vakum Super Cordless Car Vacuum Cleaner 15000Pa Mini Vacuum Cleaner Vakum Cleaner Vacuum Kereta Rechargable 车载吸尘器\n\n\n✅ LOCAL SELLER\n✅READY STOCK IN SELANGOR\n✅FAST DELIVERY WITHIN 24 HOURS\n✅QUALITY GURANTEE\n\nProduct Features:\n\nCar Vacuum is multifunction car vacuum , it can be vacuum and blow ! ! ! \n\nWIRELESS: Meet the deep cleaning needs of the bedroom/living room/kitchen without the wire plug.\n\n HIGH SUCTION: 15,000Pa, 120w high power to absorb the dirt easily.\n\n USB RECHARGEABLE: Powerful 4000mAh large-capacity lithium-ion battery, up to 20 minutes of working time.\n\n MINI COMPACT: Easy to store at anywhere.\n\n LIGHTWEIGHT: Portable, easy to use anytime and anywhere.\n\n MULTI-FUNCTIONAL: Pet hair on the sofa, food crumbs in the pet house, pencil shavings dust in the keyboard gap, soot, bread on the desk shavings, bedroom, office, car or else.\n\n QUALITY: High-quality filter with excellent filtering and dust removal effect, can filter and block PM2.5 in stages.\n\n DURABLE: Long service life, filter can be wash and reusable.\n\n\nVoltage: 15,000Pa / 120w\nWeight: about 500g\nBattery capacity: 4,000 mAh\nColor: Green & Grey\n\nPackage Included:\n\n1x Wireless Vacuum Cleaner\n2x Nozzles\n1x Filter\n1x USB Charging Cable\n1x User Manual",
"desc_obj": [
{
"text": "4in1 Vakum Super Cordless Car Vacuum Cleaner 15000Pa Mini Vacuum Cleaner Vakum Cleaner Vacuum Kereta Rechargable 车载吸尘器",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r98z-lllrnzpyj7fofc",
"empty_count": null
},
{
"text": "✅ LOCAL SELLER",
"image": "",
"empty_count": null
},
{
"text": "✅READY STOCK IN SELANGOR",
"image": "",
"empty_count": null
},
{
"text": "✅FAST DELIVERY WITHIN 24 HOURS",
"image": "",
"empty_count": null
},
{
"text": "✅QUALITY GURANTEE",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": "Product Features:",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": "Car Vacuum is multifunction car vacuum , it can be vacuum and blow ! ! ! ",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": "WIRELESS: Meet the deep cleaning needs of the bedroom/living room/kitchen without the wire plug.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " HIGH SUCTION: 15,000Pa, 120w high power to absorb the dirt easily.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " USB RECHARGEABLE: Powerful 4000mAh large-capacity lithium-ion battery, up to 20 minutes of working time.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " MINI COMPACT: Easy to store at anywhere.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " LIGHTWEIGHT: Portable, easy to use anytime and anywhere.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " MULTI-FUNCTIONAL: Pet hair on the sofa, food crumbs in the pet house, pencil shavings dust in the keyboard gap, soot, bread on the desk shavings, bedroom, office, car or else.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " QUALITY: High-quality filter with excellent filtering and dust removal effect, can filter and block PM2.5 in stages.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": " DURABLE: Long service life, filter can be wash and reusable.",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 2
},
{
"text": "Voltage: 15,000Pa / 120w",
"image": "",
"empty_count": null
},
{
"text": "Weight: about 500g",
"image": "",
"empty_count": null
},
{
"text": "Battery capacity: 4,000 mAh",
"image": "",
"empty_count": null
},
{
"text": "Color: Green & Grey",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": "Package Included:",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "",
"empty_count": 1
},
{
"text": "1x Wireless Vacuum Cleaner",
"image": "",
"empty_count": null
},
{
"text": "2x Nozzles",
"image": "",
"empty_count": null
},
{
"text": "1x Filter",
"image": "",
"empty_count": null
},
{
"text": "1x USB Charging Cable",
"image": "",
"empty_count": null
},
{
"text": "1x User Manual",
"image": "",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r98q-lllrnzpyc6lg07",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r990-lllrnzpydl5w93",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r98t-lllrnzpyezqc1d",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r98r-lllrnzpygeasfd",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r98q-lllrnzpyhsv8c9",
"empty_count": null
},
{
"text": "",
"image": "https://cf.shopee.com.my/file/my-11134208-7r992-lpaoyp2d0p00cd",
"empty_count": null
}
],
"comment_count": 2735,
"delivery_info": {
"area_from": "Selangor",
"postage": 0,
"is_free_shipping": true
},
"shop_info": {
"shop_id": 454052120,
"shop_name": "BEST DIY Official Store",
"shop_url": "https://shopee.com.my/shop/454052120",
"shop_location": "Selangor",
"shopee_verified": true,
"is_cb": false,
"is_official_shop": false,
"is_mart": false,
"is_preferred_plus_seller": true,
"all_items_count": 105
},
"size_chart": "",
"sku_props": [
{
"pid": "1",
"prop_name": "Colors",
"values": [
{
"vid": "1",
"name": "Upgraded- Grey",
"imageUrl": "https://cf.shopee.com.my/file/my-11134207-7r992-lllrjka1w9u884"
},
{
"vid": "2",
"name": "Upgraded- Green",
"imageUrl": "https://cf.shopee.com.my/file/my-11134207-7r98p-lllrjka1xoeod6"
}
]
}
],
"skus": [
{
"skuid": "177658766148",
"sale_price": "26.0",
"origin_price": "50.0",
"stock": 44,
"props_ids": "1:2",
"props_names": "Upgraded- Green",
"discount": 48,
"sold_count": 2203,
"status": 1
},
{
"skuid": "177658766147",
"sale_price": "26.0",
"origin_price": "50.0",
"stock": 25,
"props_ids": "1:1",
"props_names": "Upgraded- Grey",
"discount": 48,
"sold_count": 3862,
"status": 1
}
],
"status": 1
}
}
# Unexpected error, please contact customer support.
# Parameter Error
# API rate limit exceeded / Insufficient balance.