当前位置:网站首页>Tmall product details interface, tmall product coupon interface, tmall API interface, tmall price monitoring interface, tmall price comparison interface, brand rights protection interface, tmall sales
Tmall product details interface, tmall product coupon interface, tmall API interface, tmall price monitoring interface, tmall price comparison interface, brand rights protection interface, tmall sales
2022-06-13 08:23:00 【wx_ one billion five hundred and ninety-seven million sixty-thr】
One 、 Tmall product details interface , Tmall product coupon interface , Tmall api Interface , Tmall price monitoring interface , Tmall price comparison interface , Brand rights protection interface , Tmall sales api Interface , The interface code can interface with the data analysis service , Brand rights protection , Price comparison business , The industry analysis business interface code is as follows :
Click to get the test key and secret
1. The tmall product details interface request parameters are as follows :
Request parameters :num_iid=520813250866&is_promotion=1
Parameter description :num_iid: Taobao products ID
is_promotion: Whether to obtain the promotion price
2. The interface response parameters of tmall product details are as follows :
name type must Example value describe
item item[] 1 Baby details data
num_iid Bigint 1 520813250866 baby ID
title String 1 Sanyangmu foldable knife has passed the security inspection, creative Mini key ring, key knife, military knife, carry on multi-function knife, package mail Baby title
desc_short String 0 Product introduction
promotion_price Int 0 concessional rate
price Float 1 25.8 Price
total_price Float 0 0
suggestive_price Float 0 0
orginal_price String 0 25.80 The original price
nick String 0 Happy inn Shopkeeper's nickname
num Int 0 3836 stock
min_num Int 0 0 Minimum number of purchases
detail_url String 0 http://item.taobao.com/item.htm?id=520813250866 Baby link
pic_url String 1 //gd2.alicdn.com/imgextra/i4/2596264565/TB2p30elFXXXXXQXpXXXXXXXXXX_!!2596264565.jpg Baby pictures
brand String 0 Sanjianmu The brand name
brandId Int 0 8879363 brand ID
rootCatId Int 0 50013886 Top class ID
cid Int 1 50014822
crumbs Mix 0 [] Navigation menu
created_time String 0
modified_time String 0
delist_time String 0
desc String 0 Goods details
desc_img Mix 0 [] Product details picture
item_imgs Mix 0 item_imgs[] Commodity images
item_weight String 0
item_size String 0
location String 0 Place of shipment
express_fee Float 0 0.00 Express fee
ems_fee Float 0 EMS cost
post_fee Float 0 Logistics expenses
shipping_to String 0 Ship to
has_discount Boolean 0 false Is there a discount
video video[] 0 Product video
pic string 0 https://img.alicdn.com/imgextra/i4/1795410438/O1CN01ZORTQ01F6dyavtEur_!!1795410438.jpg Video preview
url string 0 //cloud.video.taobao.com/play/u/1795410438/p/1/e/1/t/8/218504165570.swf Video path
type string 0 item Video type
is_virtual String 0
sample_id String 0 Product style logo ID
is_promotion Boolean 0 false Promotion
props_name String 0 1627207:1347647754: Color classification : Rectangle with bottle opener + Send tools, knives and cards + chain ;1627207:1347647753: Color classification : Oval with bottle opener + Send tools, knives and cards + chain ; Commodity attribute name . The format is pid1:vid1:name1:value1;pid1:vid2:name2:value2.
prop_imgs prop_imgs[] 0 List of product attribute pictures
prop_img prop_img[] 0
properties string 0 1627207:1347647754
url string 0 //gd2.alicdn.com/imgextra/i3/2596264565/TB2.XeblVXXXXXkXpXXXXXXXXXX_!!2596264565.jpg
property_alias String 0 20509:9974422:36;1627207:28326: Red ;20509:9975710:38;1627207:28326: Red ;20509:9981357:40;1627207:28326: Red Sales attribute value alias . The format is pid1:vid1:alias1;pid1:vid2:alia2.
props Mix 0 [{ "name": " Place of Origin ","value": " China " }] Commodity properties
total_sold Int 0
skus skus[] 0 Product specification information list
sku sku[] 0
price string 0 39
total_price string 0 ul
orginal_price string 0 39.00
properties string 0 1627207:1347647754",
properties_name string 0 1627207:1347647754: Color classification : Rectangle with bottle opener + Send tools, knives and cards + chain
quantity string 0 305
sku_id string 0 316659862598
seller_id Int 0 2844096782 The seller ID
sales Int 0 138 sales
shop_id Int 0 151372205 The store ID
props_list Mix 0 {20509:9974422: Size :36} Commodity properties
seller_info seller_info[] 1 Seller information
nick string 1 Happy inn
city string 0
level int 0 12
bail int 0 2000
rate int 0 96
score float 0 4.8
delivery_score float 0 4.8
item_score float 0 4.8
shop_type string 0
user_num_id Bigint 0 2596264565
sid Bigint 0 127203758
title string 0 Happy inn
zhuy string 0 //shop127203758.taobao.com
company_name string 0
menu mix 0 []
tmall Boolean 0 false Whether tmall
error String 0 error message
warning String 0 Warning message
url_log Mix 0 []
favcount Int 0 0
fanscount Int 0 0
method String 0 item_tmall:pget_item
promo_type String 0
props_img Mix 0 1627207:28326": "//img.alicdn.com/imgextra/i2/2844096782/O1CN01VrjpXt1zyCc9DvERE_!!2844096782.jpg Attribute image
shop_item Mix 0 []
relate_items Mix 0 []
3. Interface request example (CURL、PHP 、PHPsdk 、Java 、C# 、Python…):
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;
public class Example {
private static String readAll(Reader rd) throws IOException {
StringBuilder sb = new StringBuilder();
int cp;
while ((cp = rd.read()) != -1) {
sb.append((char) cp);
}
return sb.toString();
}
public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection();
conn.setDoOutput(true);
conn.setDoInput(true);
PrintWriter out = new PrintWriter(conn.getOutputStream());
out.print(body);
out.flush();
InputStream instream = conn.getInputStream();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
String jsonText = readAll(rd);
JSONObject json = new JSONObject(jsonText);
return json;
} finally {
instream.close();
}
}
public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
URL realUrl = new URL(url);
URLConnection conn = realUrl.openConnection();
InputStream instream = conn.getInputStream();
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
String jsonText = readAll(rd);
JSONObject json = new JSONObject(jsonText);
return json;
} finally {
instream.close();
}
}
public static void main(String[] args) throws IOException, JSONException {
// Request example url The default request parameters have been URL Encoding processing
String url = "https://wx19970108018/taobao/item_get/?key=< Your own apiKey>&secret=< Your own apiSecret>&num_iid=520813250866&is_promotion=1";
JSONObject json = getRequestFromUrl(url);
System.out.println(json.toString());
}
}
4. Interface response example :
{
"item": {
"num_iid": "520813250866",
"title": " Sanyangmu foldable knife has passed the security inspection, creative Mini key ring, key knife, military knife, carry on multi-function knife, package mail ",
"desc_short": "",
"price": 25.8,
"total_price": 0,
"suggestive_price": 0,
"orginal_price": "25.80",
"nick": " Happy inn ",
"num": "832",
"min_num": 0,
"detail_url": "http://item.taobao.com/item.htm?id=520813250866",
"pic_url": "//img.alicdn.com/imgextra/i4/2596264565/TB2p30elFXXXXXQXpXXXXXXXXXX_!!2596264565.jpg",
"brand": " Sanjianmu ",
"brandId": "4036703",
"rootCatId": "50013886",
"cid": "50014822",
"favcount": "4824",
"fanscount": "1469",
"crumbs": [],
"created_time": "",
"modified_time": "",
"delist_time": "",
"desc": "<p style=\"text-align:center;\"><span style=\"color:#ff0000;\"><span style=\"font-size:24.0px;\"><strong> All products in the shop support lettering , If lettering is needed , Just contact customer service before shooting .</strong></span></span></p> <p style=\"text-align:center;\"><span style=\"font-size:18.0px;\"><strong> Summer is coming , A portable folding knife with you ,<span style=\"color:#ff0000;\"> With bottle opener function </span>, Don't worry about drinking .( Key knife does not have bottle opener function )</strong></span></p> <p style=\"text-align:center;\"><strong style=\"color:#000000;line-height:1.5;\"><span style=\"font-size:18.0px;\"><span style=\"line-height:18.0px;\"> Can be used as a pendant necklace decoration , It can also be used as a key chain ornament , Fruit knife Bottle opener Outdoor self-defense .</span></span></strong></p> <p style=\"text-align:center;\"><strong style=\"line-height:1.5;\"><span style=\"font-size:24.0px;\"> Some customers tell us that the quality of the chain is not good enough , So the store has reordered a batch of chains with better quality for free ,<span style=\"color:#ff0000;\"> Add quantity without price </span>, Just to make you buy more comfortable , Wear more at ease .</span></strong></p> <p style=\"text-align:center;\"><span style=\"font-size:36.0px;\"><strong> Give away when you buy <span style=\"color:#ff0000;\"> Tools, knives and chains </span> One </strong></span></p> <p style=\"text-align:center;\"><span style=\"font-size:36.0px;\"><strong><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2Sci2jXXXXXXFXpXXXXXXXXXX_!!2596264565.png\" size=\"611x442\"> </strong></span></p> <p style=\"text-align:center;\"><span style=\"font-size:18.0px;\"><strong> The brilliant diamond package includes 【SK016D Key buckle +GJ019C Folding knife +GJ017D Tool card 】</strong></span><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2wWohmXXXXXX8XXXXXXXXXXXX_!!2596264565.jpg\" size=\"750x600\" /></p> <p style=\"text-align:center;\"><span style=\"font-size:18.0px;\"><strong> The great master package includes 【304 Stainless steel key ring +GJ019C Folding knife +GJ017D Tool card 】</strong></span><a href=\"//item.taobao.com/item.htm?id=520798805877\" target=\"_blank\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2_uiXnFXXXXXBXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"float:none;margin:0.0px;\" /></a></p> <p style=\"text-align:center;\"> </p> <p style=\"text-align:center;\"><span style=\"font-size:18.0px;\"><strong> The best king package includes 【 Titanium key ring +GJ019C Folding knife +GJ017D Tool card 】<a href=\"//item.taobao.com/item.htm?id=520801586805\" target=\"_blank\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2Gm9xnFXXXXbmXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"float:none;margin:0.0px;\" /></a> </strong></span></p> <p style=\"text-align:center;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB28Ox4b77OyuJjSsplXXXqdpXa_!!2596264565.jpg\" size=\"749x553\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i1/2596264565/TB2.mTddVXXXXbeXpXXXXXXXXXX_!!2596264565.jpg\" style=\"line-height:1.5;\" size=\"750x653\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB21Ro.jl0lpuFjSszdXXcdxFXa_!!2596264565.jpg\" size=\"750x653\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2q9CelVXXXXcUXXXXXXXXXXXX_!!2596264565.jpg\" size=\"750x340\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB21EX9lVXXXXaXXpXXXXXXXXXX_!!2596264565.jpg\" size=\"750x416\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2udCylVXXXXXgXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i1/2596264565/TB2EARxjB8lpuFjSspaXXXJKpXa_!!2596264565.jpg\" size=\"750x515\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2ssuwlVXXXXafXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2nAHqgyC9MuFjSZFoXXbUzFXa_!!2596264565.jpg\" size=\"750x606\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2ahCelVXXXXc_XXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2w1JnjwRkpuFjy1zeXXc.6FXa_!!2596264565.jpg\" size=\"750x469\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2C902lVXXXXbnXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i1/2596264565/TB2sGR3lVXXXXblXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i1/2596264565/TB2ZBGxlVXXXXXMXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i1/2596264565/TB2MjWklVXXXXcaXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2UgV3lVXXXXbdXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2ip5XlVXXXXX2XpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\"> <img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2sMTBdVXXXXXlXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2d3HfdVXXXXahXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2AVbBdVXXXXXkXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2nf_wdVXXXXaMXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2dLYddVXXXXbtXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2H1_adVXXXXbWXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2eBzsdVXXXXbuXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i4/2596264565/TB2dOTndVXXXXcCXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB2fK2tdVXXXXbkXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i2/2596264565/TB29zjedVXXXXaFXpXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\"><img align=\"absmiddle\" src=\"//img.alicdn.com/imgextra/i3/2596264565/TB2i7rmdVXXXXcTXXXXXXXXXXXX_!!2596264565.jpg_q90.jpg\" style=\"line-height:1.5;\" /></p>",
"item_imgs": [
{
"url": "//img.alicdn.com/imgextra/i4/2596264565/TB2p30elFXXXXXQXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"url": "//img.alicdn.com/imgextra/i2/2596264565/TB2onxRlVXXXXcDXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"url": "//img.alicdn.com/imgextra/i1/2596264565/TB2a.x.lVXXXXXPXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"url": "//img.alicdn.com/imgextra/i2/2596264565/TB2iWE6bKZkyKJjSszbXXblwFXa_!!2596264565.jpg"
},
{
"url": "//img.alicdn.com/imgextra/i4/2596264565/TB2j2cTXib_F1JjSZFzXXc6KXXa_!!2596264565.jpg"
}
],
"item_weight": "0",
"item_size": "",
"location": " Guangdong shenzhen ",
"post_fee": "",
"express_fee": "0.00",
"ems_fee": "",
"shipping_to": " Baiyun District, Guangzhou, Guangdong ",
"has_discount": "false",
"video": [],
"is_virtual": "",
"sample_id": "",
"is_promotion": "false",
"props_name": "1627207:1347647754: Color classification : Rectangle with bottle opener + Send tools, knives and cards + chain ;1627207:1347647753: Color classification : Oval with bottle opener + Send tools, knives and cards + chain ;1627207:1195392087: Color classification :GJ018X Key knife + Send tools, knives and cards + chain ;1627207:1331112595: Color classification : Super Master package 【 Send tool card + chain 】;1627207:1331112594: Color classification : The best king package 【 Send tool card + chain 】;1627207:1331264247: Color classification : Brilliant diamond package 【 Send tool card + chain 】",
"prop_imgs": {
"prop_img": [
{
"properties": "1627207:1347647754",
"url": "//img.alicdn.com/imgextra/i3/2596264565/TB2.XeblVXXXXXkXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"properties": "1627207:1347647753",
"url": "//img.alicdn.com/imgextra/i4/2596264565/TB2dTrjdVXXXXXBXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"properties": "1627207:1195392087",
"url": "//img.alicdn.com/imgextra/i2/2596264565/TB2j22kdVXXXXXdXpXXXXXXXXXX_!!2596264565.jpg"
},
{
"properties": "1627207:1331112595",
"url": "//img.alicdn.com/imgextra/i4/2596264565/TB2_uiXnFXXXXXBXXXXXXXXXXXX_!!2596264565.jpg"
},
{
"properties": "1627207:1331112594",
"url": "//img.alicdn.com/imgextra/i4/2596264565/TB2Gm9xnFXXXXbmXXXXXXXXXXXX_!!2596264565.jpg"
},
{
"properties": "1627207:1331264247",
"url": "//img.alicdn.com/imgextra/i3/2596264565/TB2wWohmXXXXXX8XXXXXXXXXXXX_!!2596264565.jpg"
}
]
},
"property_alias": "1627207:1347647754: Rectangle with bottle opener + Send tools, knives and cards + chain ;1627207:1347647753: Oval with bottle opener + Send tools, knives and cards + chain ;1627207:1195392087:GJ018X Key knife + Send tools, knives and cards + chain ;1627207:1331112595: Super Master package 【 Send tool card + chain 】;1627207:1331112594: The best king package 【 Send tool card + chain 】;1627207:1331264247: Brilliant diamond package 【 Send tool card + chain 】",
"props": [
{
"name": " brand ",
"value": " Sanjianmu "
},
{
"name": " Place of Origin ",
"value": " China "
},
{
"name": " Color classification ",
"value": " Rectangle with bottle opener + Send tools, knives and cards + chain , Oval with bottle opener + Send tools, knives and cards + chain ,GJ018X Key knife + Send tools, knives and cards + chain , Super Master package 【 Send tool card + chain 】, The best king package 【 Send tool card + chain 】, Brilliant diamond package 【 Send tool card + chain 】"
},
{
"name": " Tag price ",
"value": "46"
},
{
"name": " Number of functions ",
"value": "5 And below "
},
{
"name": " Article No ",
"value": "GJ019C"
},
{
"name": " Additional features ",
"value": " Bottle opener , The knife , bolt driver , Key ring , other "
}
],
"total_sold": "1",
"skus": {
"sku": [
{
"price": "39",
"orginal_price": "39.00",
"properties": "1627207:1347647754",
"properties_name": "1627207:1347647754: Color classification : Rectangle with bottle opener + Send tools, knives and cards + chain ",
"quantity": "104",
"sku_id": "3166598625985"
},
{
"price": "39",
"orginal_price": "39.00",
"properties": "1627207:1347647753",
"properties_name": "1627207:1347647753: Color classification : Oval with bottle opener + Send tools, knives and cards + chain ",
"quantity": "370",
"sku_id": "3166598625984"
},
{
"price": "25.8",
"orginal_price": "25.80",
"properties": "1627207:1195392087",
"properties_name": "1627207:1195392087: Color classification :GJ018X Key knife + Send tools, knives and cards + chain ",
"quantity": "34",
"sku_id": "3144644292458"
},
{
"price": "73.8",
"orginal_price": "73.80",
"properties": "1627207:1331112595",
"properties_name": "1627207:1331112595: Color classification : Super Master package 【 Send tool card + chain 】",
"quantity": "157",
"sku_id": "3161300228970"
},
{
"price": "91.8",
"orginal_price": "91.80",
"properties": "1627207:1331112594",
"properties_name": "1627207:1331112594: Color classification : The best king package 【 Send tool card + chain 】",
"quantity": "0",
"sku_id": "3161300228969"
},
{
"price": "63.8",
"orginal_price": "63.80",
"properties": "1627207:1331264247",
"properties_name": "1627207:1331264247: Color classification : Brilliant diamond package 【 Send tool card + chain 】",
"quantity": "167",
"sku_id": "3161107666655"
}
]
},
"seller_id": "2596264565",
"sales": "1",
"shop_id": "127203758",
"props_list": {
"1627207:1347647754": " Color classification : Rectangle with bottle opener + Send tools, knives and cards + chain ",
"1627207:1347647753": " Color classification : Oval with bottle opener + Send tools, knives and cards + chain ",
"1627207:1195392087": " Color classification :GJ018X Key knife + Send tools, knives and cards + chain ",
"1627207:1331112595": " Color classification : Super Master package 【 Send tool card + chain 】",
"1627207:1331112594": " Color classification : The best king package 【 Send tool card + chain 】",
"1627207:1331264247": " Color classification : Brilliant diamond package 【 Send tool card + chain 】"
},
"seller_info": {
"title": " Happy inn ",
"shop_name": " Happy inn ",
"sid": "127203758",
"zhuy": "//shop127203758.taobao.com",
"level": "12",
"shop_type": "C",
"user_num_id": "2596264565",
"nick": " Happy inn ",
"cid": null,
"delivery_score": "4.8 ",
"item_score": "4.8 ",
"score_p": "4.8 "
},
"tmall": "false",
"error": "",
"warning": "",
"url_log": [],
"stuff_status": "",
"shopinfo": {
"shop_name": " Happy inn ",
"shop_id": "127203758"
},
"data_from": "mtop",
"method": "item_mtop:item_get",
"promo_type": null,
"props_img": {
"1627207:1347647754": "//img.alicdn.com/imgextra/i3/2596264565/TB2.XeblVXXXXXkXpXXXXXXXXXX_!!2596264565.jpg",
"1627207:1347647753": "//img.alicdn.com/imgextra/i4/2596264565/TB2dTrjdVXXXXXBXpXXXXXXXXXX_!!2596264565.jpg",
"1627207:1195392087": "//img.alicdn.com/imgextra/i2/2596264565/TB2j22kdVXXXXXdXpXXXXXXXXXX_!!2596264565.jpg",
"1627207:1331112595": "//img.alicdn.com/imgextra/i4/2596264565/TB2_uiXnFXXXXXBXXXXXXXXXXXX_!!2596264565.jpg",
"1627207:1331112594": "//img.alicdn.com/imgextra/i4/2596264565/TB2Gm9xnFXXXXbmXXXXXXXXXXXX_!!2596264565.jpg",
"1627207:1331264247": "//img.alicdn.com/imgextra/i3/2596264565/TB2wWohmXXXXXX8XXXXXXXXXXXX_!!2596264565.jpg"
},
"rate_grade": "",
"shop_item": [],
"relate_items": []
},
"secache": "d8bd20b8f0d9df02dd030dd374110240",
"secache_time": 1591841298,
"secache_date": "2020-06-11 10:08:18",
"translate_status": "error",
"translate_time": 0.001,
"language": {
"current_lang": "zh-CN",
"source_lang": "cn"
},
"error": "",
"reason": "",
"error_code": "0000",
"cache": 1,
"api_info": "today:7033 max:10000",
"execution_time": 0.211,
"server_time": "Beijing/2020-06-11 10:12:27",
"call_args": {
"num_iid": "520813250866",
"area_id": "440111"
},
"api_type": "taobao",
"translate_language": "zh-CN",
"translate_engine": "google_cn",
"server_memory": "8.26MB",
"request_id": "15ee1930b4e098"
}
remarks : The shared interface code docking can obtain the commodity price of tmall , Coupon information , brand , title , Main picture , Promotional price , Store information , And other information can be collected , It can be used for general sales monitoring 、 Short video sales price monitoring , Industry data analysis business , Purchasing business , The construction of the mall needs data services , Data analysis and other businesses , I hope the above interface code docking can help friends in need .
边栏推荐
- When submitting the laravel admin form and using the required verification, an error is reported when the value is 0
- How app inventor accesses resource files in assets directory
- 批发商为什么要使用订单系统
- SQL injection experiment
- Common shell script development specifications
- Notes on MySQL transaction not automatically submitting
- 微服务项目搭建三:自动生成代码
- Leetcode- sort arrays by parity
- Penetration problem (main directory, password explosion, database uploading Trojan horse)
- filebeat采集日志到ELK
猜你喜欢
CCNP_ Bt- Reissue
How to install the bdtab (BD) new tab plug-in in edge browser (Graphic tutorial)
Buuctf web (IV)
CCNP_ BT static routing
Structural analysis of hyperledger fabric (I)
Overview of cross chain protocol IBC
微服务项目搭建三:自动生成代码
DNS domain name resolution service
Buffer Overflow Vulnerability Lab
Remote access and control
随机推荐
字符串的逆序与比较
使用kvm创建三台能通局域网的虚拟机
Young's matrix to find whether a number exists
水仙花升级版(自幂数)
SQL injection experiment
Common shell script development specifications
DHCP principle and configuration
Why do wholesalers use the order system
LeetCode-按奇偶排序数组
Dfinity (ICP) identity authentication and ledger quick start-3
ERP basic data Kingdee
JS - print 99 multiplication table of the for cycle case
Is there any good management software to solve the problems faced by tea wholesalers
Four ways to install MySQL in Linux
Mongodb test case
[notes] like the solution to the problem of slow query (index + explicitly specifying query fields)
JS - array de duplication in the array object case
Structural analysis of hyperledger fabric (I)
判断一个字符串是否由另外一个字符串旋转而来
抖音关键词搜索列表接口,超详细的接口对接步骤