1688 product details API interface, 1688 product details API interface access instructions

1. item_get-get 1688 product details interface access instructions
click on register to get the key and secret test account.
2. Suggested use scenarios
1. Get 1688 product details interface
2. Get product details page data information
3. Mall system construction
4. Purchasing system mall Construction
5. Product selection for ERP system
3. Public parameter description:
Request parameter: num_iid=610947572360
Parameter description: num_iid:1688 commodity ID
sales_data:&sales_data=1 Get transaction data for the past 30 days
agent:&agent=1 Get 1688 distribution agency price Data
4. Response parameters
Name type example value description
num_iid String 610947572360 Baby ID
title String Factory direct sales of Xiaomi Youpin Qin2 Pro smartphone student phone elderly phone backup phone Xiaoai classmate 4G Product title
desc_short String Product introduction
price Float 799.00 Price
total_price Float 0
suggestive_price Float 0
orginal_price Float 799.00 Original price
nick String qin Duoqin technology seller nickname
num Int 2191
detail_url String https://detail.1688.com/offer/610947572360.html Baby link
pic_url String https://cbu01.alicdn.com/img/ibank/2020/063/830/13235038360_979836901.jpg Baby picture
brand String MAJE brand
brandId Int 8879363 Brand id
rootCatId Int 0 Top category ID
cid Int 124264005
desc String
item_imgs Mix [{"url": "https://cbu01.alicdn.com/img/ibank/2020/063/830/13235038360_979836901.jpg"} ] Product image list
item_weight String
post_fee Float 9.00 postage
express_fee Float 9.00 EMS cost
ems_fee Float 9.00 logistics cost
shipping_to String delivery to Baiyun District, Guangzhou, Guangdong
video Mix [{“pic”: “https://img.alicdn.com/imgextra/i4/1795410438/O1CN01ZORTQ01F6dyavtEur_!!1795410438.jpg”, “url”: “//cloud.video.taobao.com/play/ u/1795410438/p/1/e/1/t/8/218504165570.swf","type": "item"}] product video
sample_id String
props_name String 0:0: body memory: 64GB; 1:0: Color: Iron Gray; 1:1: Color: Porcelain White Product property name
prop_imgs Mix {"prop_img": [{"properties": "1627207:1347647754", "url": "//gd2.alicdn.com/imgextra/ i3/2596264565/TB2.XeblVXXXXXkXpXXXXXXXXXX_!! 2596264565.jpg"}]} product attribute picture list
property_alias String 0:0:64GB;1:0: iron gray; 1:1: porcelain white attribute alias
props Mix [{"name" : "Brand", "value": "other"}] Product details
total_sold Int 1
scale Int
sellUnit Int
skus Mix {"sku": [{"price": "799.00","total_price": "","sales": "159","properties": "0:0;1:0", "properties_name": "0:0: body memory: 64GB; 1: 0: color: iron gray", "quantity": 716, "sku_id": 3184603612387, "spec_id": "0eb631954bfe8fb00a45824fc6193f2f" }]} Product specification information list
seller_id Int 2206619673102 Seller ID
sales Int 100 Sales
shop_id Int 151372205 Shop ID
props_list Mix {"0:0": "Memory: 64GB"} Product attributes
seller_info Mix {"nick": "qin多亲科技", "user_num_id": " 2206619673102","sid": "b2b-2206619673102e9470","title": "Shenzhen Duoqin Technology Strength Store", "zhuy": "https://winport.m.1688.com/page/index.html?memberId =b2b-2206619673102e9470","shop_name": "Shenzhen multi-pro technology strength store"} Seller information
tmall Boolean false
Is Tmall data_from String 1688app error message
error String error message
unit String department; unit
is_support_mix Boolean true
mix_amount Int 30
mix_Begin Int
mix_number Int
sales_data Date
location String Shenzhen, Guangdong Province delivery place
props_img Mix Property picture
sales_info Mix
desc_img Mix [{“https://cbu01.alicdn.com/img/ibank/2020/560/ 807/14112708065_979836901.jpg”}]
Detailed picture list shop_item Mix
relate_items Mix
5. Request example: (CURL, PHP, PHPsdk, Java, C#, Python...)

<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://api.onebound.cn/taobao/demo/sdk2020/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/1688/item_get/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=610947572360";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>

API tool
API SDK call sample
APISDK download
API test tool

How to activate the API test, click to activate immediately

Guess you like

Origin blog.csdn.net/wx_19970108018/article/details/113092583