淘宝商品搜索
<h3>接口描述</h3>
<ul>
<li>淘宝商品搜索,可应用于商品销售情况分析,电商选品分析,品牌口碑挖掘和竞争对手分析等。</li>
<li>支持分页</li>
</ul>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/taobao/goods/search</code></p>
<h3>请求方式</h3>
<ul>
<li>GET/POST</li>
</ul>
<h3>请求格式</h3>
<ul>
<li>x-www-form-urlencoded</li>
</ul>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>名称</th>
<th>类型</th>
<th>必须</th>
<th><div style="width:420px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>appId</td>
<td>String</td>
<td>是</td>
<td>服务商分配的唯一标识</td>
</tr>
<tr>
<td>timestamp</td>
<td>Long</td>
<td>是</td>
<td>当前时间的毫秒数</td>
</tr>
<tr>
<td>sign</td>
<td>String</td>
<td>是</td>
<td>签名,见签名算法说明</td>
</tr>
<tr>
<td>keyword</td>
<td>String</td>
<td>是</td>
<td>关键字</td>
</tr>
<tr>
<td>startPrice</td>
<td>number</td>
<td>否</td>
<td>最低价格</td>
</tr>
<tr>
<td>endPrice</td>
<td>number</td>
<td>否</td>
<td>最高价格</td>
</tr>
<tr>
<td>page</td>
<td>int</td>
<td>否</td>
<td>分页页号,从1开始,默认:1</td>
</tr>
<tr>
<td>sort</td>
<td>String</td>
<td>否</td>
<td>排序<br>default - 综合<br>credit - 信用<br>sale - 销量<br>priceAsc - 价格升序<br>priceDesc - 价格降序<br>默认:default</td>
</tr>
</tbody>
</table>
<h3>签名算法说明</h3>
<pre><code>sign = sha256( appId + appSecret + timestamp)</code></pre>
<p>用服务商分配的 appId、服务商分配的 appSecret,当前时间毫秒数 timestamp,按上述顺序拼接成字符串,再进行 sha256 哈希得到。如下:</p>
<pre><code class="language-java">String appId = &quot;xyzxy2121zxyz&quot;;
String timestamp = &quot;1555378976238&quot;;
String appSecret = &quot;efcefcef1121cefcefc1212121&quot;;
String str = appId + appSecret + timestamp;
String sign = sha256(str);</code></pre>
<h3>正确返回样例</h3>
<pre><code class="language-json">{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;成功&quot;,
&quot;taskNo&quot;: &quot;193305098211083684739669&quot;,
&quot;charge&quot;: true,
&quot;data&quot;: {
&quot;hideMainSearchbar&quot;: &quot;false&quot;,
&quot;apiNavNodes&quot;: [
{
&quot;nodeName&quot;: &quot;价格区间&quot;,
&quot;preFilterBackgroundColor&quot;: &quot;#F5F5F5&quot;,
&quot;hide&quot;: &quot;false&quot;,
&quot;preFilter&quot;: &quot;false&quot;,
&quot;preFilterFontColor&quot;: &quot;#333333&quot;,
&quot;sideFilter&quot;: &quot;true&quot;,
&quot;index&quot;: &quot;1&quot;,
&quot;id&quot;: &quot;price&quot;,
&quot;type&quot;: &quot;price&quot;,
&quot;selected&quot;: &quot;false&quot;,
&quot;multiSelect&quot;: &quot;false&quot;
},
{
&quot;nodeName&quot;: &quot;店铺类型&quot;,
&quot;preFilterBackgroundColor&quot;: &quot;#F5F5F5&quot;,
&quot;preFilter&quot;: &quot;false&quot;,
&quot;sideFilter&quot;: &quot;true&quot;,
&quot;index&quot;: &quot;2&quot;,
&quot;type&quot;: &quot;shop&quot;,
&quot;hide&quot;: &quot;false&quot;,
&quot;nodeValue&quot;: &quot;x&quot;,
&quot;preFilterFontColor&quot;: &quot;#333333&quot;,
&quot;id&quot;: &quot;shopType&quot;,
&quot;subNavNodes&quot;: [
{
&quot;nodeName&quot;: &quot;旗舰店&quot;,
&quot;nodeValue&quot;: &quot;1&quot;,
&quot;index&quot;: &quot;3&quot;,
&quot;selected&quot;: &quot;false&quot;
},
{
&quot;nodeName&quot;: &quot;专卖店&quot;,
&quot;nodeValue&quot;: &quot;2&quot;,
&quot;index&quot;: &quot;4&quot;,
&quot;selected&quot;: &quot;false&quot;
},
{
&quot;nodeName&quot;: &quot;专营店&quot;,
&quot;nodeValue&quot;: &quot;3&quot;,
&quot;index&quot;: &quot;5&quot;,
&quot;selected&quot;: &quot;false&quot;
}
],
&quot;selected&quot;: &quot;false&quot;,
&quot;multiSelect&quot;: &quot;false&quot;
}
],
&quot;pageSize&quot;: &quot;10&quot;,
&quot;cmBelowSegment&quot;: {
&quot;version&quot;: &quot;1.0&quot;,
&quot;modules&quot;: []
},
&quot;promptResults&quot;: {
&quot;relkeyList&quot;: [],
&quot;newTextType&quot;: &quot;0&quot;,
&quot;placeholder&quot;: &quot;%&amp;%&quot;
},
&quot;noLessRecommendList&quot;: [],
&quot;recType&quot;: &quot;default&quot;,
&quot;industryId&quot;: &quot;&quot;,
&quot;totalResults&quot;: &quot;32414&quot;,
&quot;queryParameters&quot;: {
&quot;startPrice&quot;: &quot;0.0&quot;,
&quot;debug&quot;: &quot;false&quot;,
&quot;netType&quot;: &quot;WIFI&quot;,
&quot;pageSize&quot;: &quot;10&quot;,
&quot;screen&quot;: &quot;540x864&quot;,
&quot;extraParams&quot;: {},
&quot;endPrice&quot;: &quot;0.0&quot;,
&quot;imsi&quot;: &quot;&quot;,
&quot;sort&quot;: &quot;p&quot;,
&quot;deviceId&quot;: &quot;X4+usg3fQNcDAEL22DBrgfYU&quot;,
&quot;ttid&quot;: &quot;1608030065155@taobao_android_9.26.0&quot;,
&quot;appSpos&quot;: &quot;orderby=s|suggestms=0_com.tmall.wireless.module.search.xbiz.input.bean.a@bd0e790&quot;,
&quot;isDebug&quot;: &quot;false&quot;,
&quot;q&quot;: &quot;李宁&quot;,
&quot;resultShow&quot;: &quot;0&quot;,
&quot;spos&quot;: &quot;suggest_ms&quot;,
&quot;pageNo&quot;: &quot;1&quot;,
&quot;cat&quot;: &quot;2&quot;,
&quot;imei&quot;: &quot;&quot;,
&quot;from&quot;: &quot;app&quot;
},
&quot;preFilterNodes&quot;: [],
&quot;minimalEnable&quot;: &quot;false&quot;,
&quot;level1CatList&quot;: [],
&quot;traceId&quot;: &quot;2147b5b316814727403632436efb2e&quot;,
&quot;skuTermSet&quot;: [],
&quot;userloc&quot;: [],
&quot;bottomIconList&quot;: [],
&quot;catId&quot;: &quot;50012043&quot;,
&quot;ttInfoStr&quot;: &quot;{}&quot;,
&quot;showChangeListArrange&quot;: &quot;true&quot;,
&quot;success&quot;: &quot;true&quot;,
&quot;exposedFilterArgs&quot;: {},
&quot;ttInfo&quot;: {},
&quot;style&quot;: &quot;tile&quot;,
&quot;page&quot;: {
&quot;totalNum&quot;: &quot;32414&quot;,
&quot;totalPage&quot;: &quot;100&quot;,
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;pageSize&quot;: &quot;10&quot;,
&quot;currentPage&quot;: &quot;1&quot;
},
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;belowFilterDinamicXPanel&quot;: [],
&quot;dataSource&quot;: &quot;TPP&quot;,
&quot;productList&quot;: [
{
&quot;subItemId&quot;: &quot;0&quot;,
&quot;picPathNew&quot;: &quot;https://img.alicdn.com/imgextra/i1/1777425651/O1CN01lbMYrb1rcCsx4eo1F_!!0-item_pic.jpg&quot;,
&quot;sellerLoc&quot;: &quot;山东 淄博&quot;,
&quot;showTextInshop&quot;: &quot;本店运动护膝热销第3名&quot;,
&quot;isAdGoods&quot;: &quot;0&quot;,
&quot;templateInfo&quot;: {
&quot;name&quot;: &quot;tms_search_waterfall_item&quot;,
&quot;version&quot;: &quot;73311556&quot;,
&quot;url&quot;: &quot;https://ossgw.alicdn.com/rapid-oss-bucket/template_test/tms_search_waterfall_item/73311556/tms_search_waterfall_item_android.xml&quot;
},
&quot;dinamicXListName&quot;: &quot;tms_search_item&quot;,
&quot;cspuId&quot;: &quot;0&quot;,
&quot;moduleName&quot;: &quot;biscuit&quot;,
&quot;goods&quot;: &quot;true&quot;,
&quot;useLuban&quot;: &quot;false&quot;,
&quot;vtitleNew&quot;: &quot;李宁护腿护膝篮球男专业专用运动跑步长款长筒小腿压缩袜套保暖女&quot;,
&quot;shortTitle&quot;: &quot;李宁专业训练压缩袜套保暖护腿&quot;,
&quot;doneNewUserRedPacket&quot;: &quot;false&quot;,
&quot;needSkipSkuId&quot;: &quot;false&quot;,
&quot;benefitIconList&quot;: [],
&quot;priceDecimalString&quot;: &quot;.50&quot;,
&quot;sellerId&quot;: &quot;1777425651&quot;,
&quot;wmPriceAsString&quot;: &quot;&quot;,
&quot;price&quot;: &quot;46.5&quot;,
&quot;orderArrive&quot;: &quot;0&quot;,
&quot;shopId&quot;: &quot;106083424&quot;,
&quot;bybtqdyh&quot;: &quot;false&quot;,
&quot;starts&quot;: &quot;20230410103940&quot;,
&quot;skuId&quot;: &quot;4961433195950&quot;,
&quot;groupCode&quot;: &quot;-574255086168&quot;,
&quot;titleNew&quot;: &quot;李宁护腿护膝篮球男专业专用运动跑步长款长筒小腿压缩袜套保暖女&quot;,
&quot;benefitShortIconList&quot;: [],
&quot;doneBytmallPlusUpgrade&quot;: &quot;false&quot;,
&quot;categoryPath&quot;: &quot;201382020 201373215 50010728 0&quot;,
&quot;extFcBuckets&quot;: [],
&quot;itemTracker&quot;: {
&quot;ump_price_logmap&quot;: {
&quot;traceId&quot;: &quot;2147b5b316814727403632436efb2e&quot;,
&quot;cur_coupon_price&quot;: &quot;4650&quot;,
&quot;ump_skuId&quot;: &quot;4961433195947&quot;
},
&quot;v2TrackerListParams&quot;: {
&quot;2&quot;: &quot;ipv&quot;
},
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;v2TrackerOtherParams&quot;: {
&quot;Rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;
},
&quot;others&quot;: {
&quot;click_type&quot;: &quot;auction&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;item_id&quot;: &quot;574255086168&quot;,
&quot;searchType&quot;: &quot;default&quot;,
&quot;tmall_plus&quot;: &quot;false&quot;,
&quot;sort&quot;: &quot;p&quot;,
&quot;content&quot;: &quot;tmappsrp&quot;,
&quot;catid&quot;: &quot;54138001&quot;,
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.item.0&quot;,
&quot;ump-price-new&quot;: &quot;1&quot;,
&quot;show_img&quot;: &quot;https://img.alicdn.com/imgextra/i1/1777425651/O1CN01lbMYrb1rcCsx4eo1F_!!0-item_pic.jpg&quot;,
&quot;click_id&quot;: &quot;574255086168&quot;,
&quot;pos&quot;: &quot;0&quot;,
&quot;cateLeafId&quot;: &quot;201382020&quot;,
&quot;List-Item-Index&quot;: &quot;0&quot;,
&quot;cateLevel1Id&quot;: &quot;50010728&quot;,
&quot;page&quot;: &quot;1&quot;
},
&quot;aui_utlogmap&quot;: {
&quot;uiscene&quot;: &quot;1&quot;,
&quot;uifig&quot;: &quot;1001001&quot;,
&quot;uireason1&quot;: &quot;4018005&quot;,
&quot;uialgo&quot;: &quot;5&quot;,
&quot;uibucket&quot;: &quot;428579&quot;,
&quot;uititle&quot;: &quot;2001001&quot;,
&quot;wom_bucket&quot;: &quot;ali.china.tmall#98#11#-1&quot;,
&quot;fc_buckets&quot;: &quot;428579_432751&quot;,
&quot;uiabucket&quot;: &quot;432751&quot;
},
&quot;ctrlClicked&quot;: &quot;ItemClick&quot;
},
&quot;priceShort&quot;: &quot;46.5&quot;,
&quot;shopUrl&quot;: &quot;tmall://page.tm/shop?sellerId=1777425651&amp;np=574255086168&amp;spm=a1z60.21541058.itemshop.0&amp;weexShopTab=allitemsbar&amp;weexShopSubTab=allitems&quot;,
&quot;bottomIconList&quot;: [],
&quot;picPath&quot;: &quot;https://img.alicdn.com/bao/uploaded/i1/1777425651/O1CN01lbMYrb1rcCsx4eo1F_!!0-item_pic.jpg&quot;,
&quot;catId&quot;: &quot;201382020&quot;,
&quot;itemId&quot;: &quot;574255086168&quot;,
&quot;maxTitleLine&quot;: &quot;2&quot;,
&quot;similarUrl&quot;: &quot;http://h5.m.taobao.com/app/searchsimilar/www/tbsimilar/index.html?from=tmallsearch&amp;requesttype=tpp&amp;appid=2714&amp;h5version=2&amp;catid=201382020&amp;sellerid=1777425651&amp;nid=574255086168&quot;,
&quot;shopTrackerV2&quot;: {
&quot;args&quot;: {
&quot;click_type&quot;: &quot;shop&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;combo&quot;: &quot;sr-srp-ShopAllitems&quot;,
&quot;sort&quot;: &quot;p&quot;,
&quot;shop_name&quot;: &quot;动之美运动专营店&quot;,
&quot;search_type&quot;: &quot;default&quot;,
&quot;ctrlClicked&quot;: &quot;ShopClick&quot;,
&quot;utLogMap&quot;: &quot;%7B%22fc_pvid%22%3A%224b0335594778fe0c379daa0e904c60d4%22%2C%22tag%22%3A%7B%22key%22%3A%22shop_ordered%22%2C%22value%22%3A%2218%E4%B8%87%E4%BA%BA%E8%B4%AD%E4%B9%B0%E8%BF%87%22%2C%22viewText%22%3A%2218%E4%B8%87%E4%BA%BA%E8%B4%AD%E4%B9%B0%E8%BF%87%22%7D%2C%22rn%22%3A%224b0335594778fe0c379daa0e904c60d4%22%7D&quot;,
&quot;q&quot;: &quot;李宁&quot;,
&quot;shop_id&quot;: &quot;1777425651&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.itemshop.0&quot;,
&quot;click_id&quot;: &quot;1777425651&quot;,
&quot;page&quot;: &quot;1&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.itemshop.0&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;discountPriceTitle&quot;: &quot;&quot;,
&quot;vsoldNew&quot;: &quot;月销300+笔&quot;,
&quot;priceAsString&quot;: &quot;46.50&quot;,
&quot;oldmonthQuantity&quot;: &quot;300+&quot;,
&quot;shopLeftIconData&quot;: {
&quot;text&quot;: &quot;18万人购买过&quot;,
&quot;type&quot;: &quot;2&quot;,
&quot;shopLogMap&quot;: {
&quot;tag&quot;: {
&quot;viewText&quot;: &quot;18万人购买过&quot;,
&quot;value&quot;: &quot;18万人购买过&quot;,
&quot;key&quot;: &quot;shop_ordered&quot;
}
},
&quot;textColor&quot;: &quot;#BB732A&quot;
},
&quot;topListInfos&quot;: [],
&quot;priceWithRate&quot;: &quot;46.5&quot;,
&quot;iconListV2&quot;: [],
&quot;dinamicXWaterfallName&quot;: &quot;tms_search_waterfall_item&quot;,
&quot;flashSale&quot;: &quot;false&quot;,
&quot;title&quot;: &quot;李宁护腿护膝篮球男专业专用运动跑步长款长筒小腿压缩袜套保暖女&quot;,
&quot;commentText&quot;: &quot;“穿上爬山再也不腿痛了”&quot;,
&quot;uvSum&quot;: &quot;300+&quot;,
&quot;nick&quot;: &quot;动之美运动专营店&quot;,
&quot;fcGoods&quot;: &quot;false&quot;,
&quot;topListUrl&quot;: &quot;https://market.m.taobao.com/apps/market/tmalltoplist/top-find.html?wh_weex=true&amp;wx_navbar_transparent=true&amp;itemId=574255086168&quot;,
&quot;listTitleMaxLines&quot;: &quot;2&quot;,
&quot;shopImg&quot;: &quot;https://img.alicdn.com/imgextra/i3/6000000008184/O1CN01rBvQiX2AKK7lE6Ybc_!!6000000008184-0-shopmanager.jpg&quot;,
&quot;soldNew&quot;: &quot;月销300+笔&quot;,
&quot;whiteBgImg&quot;: &quot;https://img.alicdn.com/bao/uploaded/bao/upload/O1CN01KdG6HX1V266CBmHNp_!!6000000002594-2-yinhe.png&quot;,
&quot;sold&quot;: &quot;300+&quot;,
&quot;txd&quot;: &quot;false&quot;,
&quot;vpicType&quot;: &quot;first&quot;,
&quot;havePostfeeInsuranceTag&quot;: &quot;true&quot;,
&quot;picType&quot;: &quot;first&quot;,
&quot;repurchaseCard&quot;: &quot;false&quot;,
&quot;imgAspectRatio&quot;: &quot;1&quot;,
&quot;priceIntString&quot;: &quot;46&quot;,
&quot;soldItem&quot;: &quot;300+&quot;,
&quot;userId&quot;: &quot;1777425651&quot;,
&quot;url&quot;: &quot;https://detail.tmall.com/item.htm?id=574255086168&amp;skuId=4961433195950&amp;channelTraceId=search_2147b5b316814727403632436efb2e&quot;,
&quot;tmallx&quot;: &quot;false&quot;,
&quot;commonIconList&quot;: [],
&quot;shortIconListV2&quot;: [],
&quot;priceSybom&quot;: &quot;¥&quot;,
&quot;umpSkuId&quot;: &quot;4961433195947&quot;,
&quot;titlePreIconList&quot;: [
{
&quot;tailBold&quot;: &quot;false&quot;,
&quot;moduleName&quot;: &quot;default&quot;,
&quot;definedColor&quot;: &quot;false&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tmallPlusShow&quot;: &quot;true&quot;,
&quot;priority&quot;: &quot;5099&quot;,
&quot;tagOrigin&quot;: &quot;MORRO&quot;,
&quot;type&quot;: &quot;img&quot;,
&quot;value&quot;: {
&quot;moduleName&quot;: &quot;default&quot;,
&quot;width&quot;: &quot;267&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;url&quot;: &quot;https://img.alicdn.com/imgextra/i3/O1CN01AgVvzd1HbuZTXEDqe_!!6000000000777-2-tps-267-126.png&quot;,
&quot;height&quot;: &quot;126&quot;
}
}
],
&quot;shopTitle&quot;: &quot;动之美运动专营店&quot;,
&quot;location&quot;: &quot;山东 淄博&quot;,
&quot;spuId&quot;: &quot;2008978665&quot;,
&quot;vpicPathNew&quot;: &quot;https://img.alicdn.com/bao/uploaded/i1/1777425651/O1CN01lbMYrb1rcCsx4eo1F_!!0-item_pic.jpg&quot;,
&quot;hitSellerHistoryArriveABTest&quot;: &quot;true&quot;,
&quot;showCart&quot;: &quot;false&quot;,
&quot;itemUrl&quot;: &quot;https://detail.tmall.com/item.htm?id=574255086168&amp;skuId=4961433195947&amp;channelTraceId=search_2147b5b316814727403632436efb2e&amp;spm=a1z60.7754815.item.0&quot;
},
...
],
&quot;searchToolAboveDinamicXPanel&quot;: [],
&quot;searchToolBelowDinamicXPanel&quot;: [],
&quot;brandList&quot;: [],
&quot;catRootId&quot;: &quot;50012029&quot;,
&quot;hasGoods&quot;: &quot;true&quot;,
&quot;newBts&quot;: &quot;20316_27156&quot;,
&quot;orgSkuTermSet&quot;: [],
&quot;showLocIcon&quot;: &quot;true&quot;,
&quot;apiTabTypeList&quot;: [
{
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;0&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;selected&quot;: &quot;true&quot;,
&quot;subTabs&quot;: [
{
&quot;headName&quot;: &quot;综合&quot;,
&quot;tabName&quot;: &quot;综合&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.order.main&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;tabName&quot;: &quot;综合&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;type&quot;: &quot;s&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.order.main&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;0&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;type&quot;: &quot;s&quot;,
&quot;selected&quot;: &quot;false&quot;
},
{
&quot;headName&quot;: &quot;价格&quot;,
&quot;tabName&quot;: &quot;价格升序&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.order.pricedescending&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;tabName&quot;: &quot;价格升序&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;type&quot;: &quot;p&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.order.pricedescending&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;0&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;type&quot;: &quot;p&quot;,
&quot;selected&quot;: &quot;true&quot;
},
{
&quot;headName&quot;: &quot;价格&quot;,
&quot;tabName&quot;: &quot;价格降序&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.order.priceascending&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;tabName&quot;: &quot;价格降序&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;type&quot;: &quot;pd&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.order.priceascending&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;1&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;type&quot;: &quot;pd&quot;,
&quot;selected&quot;: &quot;false&quot;
}
]
},
{
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;1&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;selected&quot;: &quot;false&quot;,
&quot;subTabs&quot;: [
{
&quot;headName&quot;: &quot;销量&quot;,
&quot;tabName&quot;: &quot;销量&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.order.bysales&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;tabName&quot;: &quot;销量&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;type&quot;: &quot;d&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.order.bysales&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;0&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;type&quot;: &quot;d&quot;,
&quot;selected&quot;: &quot;false&quot;
}
]
},
{
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;2&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;selected&quot;: &quot;false&quot;,
&quot;subTabs&quot;: [
{
&quot;headName&quot;: &quot;店铺&quot;,
&quot;tabName&quot;: &quot;店铺&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.order.byshop&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;tabName&quot;: &quot;店铺&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;type&quot;: &quot;shop&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.order.byshop&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;tabPos&quot;: &quot;0&quot;,
&quot;disabled&quot;: &quot;false&quot;,
&quot;type&quot;: &quot;shop&quot;,
&quot;selected&quot;: &quot;false&quot;
}
]
}
],
&quot;hasNextPage&quot;: &quot;false&quot;,
&quot;picSearchUrl&quot;: &quot;&quot;,
&quot;skuSearchAbFlag&quot;: &quot;0&quot;,
&quot;totalPage&quot;: &quot;100&quot;,
&quot;showMainTabShop&quot;: &quot;true&quot;,
&quot;env&quot;: &quot;online&quot;,
&quot;keyWord&quot;: &quot;李宁&quot;,
&quot;args&quot;: &quot;style=tile&amp;notP4pIds=574255086168,645140011431,706722982643,708337184549,708537554076,709072146903,707980507585,598115957429,681394294321,695086775865&amp;p4pCnt=0&amp;existItemIds=574255086168,645140011431,706722982643,708337184549,708537554076,709072146903,707980507585,598115957429,681394294321,695086775865&quot;,
&quot;filterNode&quot;: {
&quot;propList&quot;: [],
&quot;filterModule&quot;: [
{
&quot;img&quot;: &quot;https://gw.alicdn.com/tfs/TB1JuA1RFXXXXcrXXXXXXXXXXXX-588-158.png&quot;,
&quot;line&quot;: &quot;2&quot;,
&quot;name&quot;: &quot;worry_free_purchase&quot;,
&quot;sort&quot;: &quot;5&quot;,
&quot;text&quot;: &quot;天猫无忧购&quot;
},
...
],
&quot;filterInfoList&quot;: [
{
&quot;showiPad&quot;: &quot;0&quot;,
&quot;filterValue&quot;: &quot;1&quot;,
&quot;displayName&quot;: &quot;通用排序&quot;,
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.morefilter.0&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;filterValue&quot;: &quot;1&quot;,
&quot;displayName&quot;: &quot;通用排序&quot;,
&quot;filterName&quot;: &quot;wwonline&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;search_type&quot;: &quot;default&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.morefilter.0&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;filterName&quot;: &quot;wwonline&quot;,
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;textColor&quot;: &quot;&quot;,
&quot;selected&quot;: &quot;false&quot;
}
],
&quot;brandList&quot;: [],
&quot;shopTypeList&quot;: [
{
&quot;itemTrackerV2&quot;: {
&quot;args&quot;: {
&quot;q&quot;: &quot;李宁&quot;,
&quot;spm&quot;: &quot;a1z60.21541058.morefilter.0&quot;,
&quot;new_bts&quot;: &quot;20316_27156&quot;,
&quot;name&quot;: &quot;旗舰店&quot;,
&quot;rn&quot;: &quot;4b0335594778fe0c379daa0e904c60d4&quot;,
&quot;search_type&quot;: &quot;default&quot;,
&quot;value&quot;: &quot;1&quot;
},
&quot;arg1&quot;: &quot;a1z60.21541058.morefilter.0&quot;,
&quot;pageName&quot;: &quot;Page_SearchResult&quot;
},
&quot;moduleName&quot;: &quot;default&quot;,
&quot;name&quot;: &quot;旗舰店&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;value&quot;: &quot;1&quot;,
&quot;selected&quot;: &quot;false&quot;
},
...
],
&quot;catModule&quot;: {
&quot;subCatList&quot;: [],
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;selectedCatPath&quot;: []
},
&quot;userloc&quot;: []
},
&quot;subCatList&quot;: [],
&quot;showSrpDetail&quot;: &quot;true&quot;,
&quot;aboveSrpDinamicXPanel&quot;: [],
&quot;priceRangeList&quot;: [],
&quot;priceModule&quot;: {
&quot;startPrice&quot;: &quot;0.0&quot;,
&quot;moduleName&quot;: &quot;default&quot;,
&quot;goods&quot;: &quot;false&quot;,
&quot;endPrice&quot;: &quot;0.0&quot;
},
&quot;showCart&quot;: &quot;false&quot;,
&quot;currentPage&quot;: &quot;1&quot;
}
}</code></pre>
<h3>错误返回样例</h3>
<pre><code class="language-json">{
&quot;code&quot;: 400,
&quot;msg&quot;: &quot;关键字不能为空&quot;,
&quot;charge&quot;: false
}</code></pre>
<h3>返回字段说明</h3>
<table>
<thead>
<tr>
<th>字段名</th>
<th><div style="width:420px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>返回码,详见:code返回码说明</td>
</tr>
<tr>
<td>msg</td>
<td>code对应的描述</td>
</tr>
<tr>
<td>charge</td>
<td>计费标志</td>
</tr>
<tr>
<td>taskNo</td>
<td>本次请求号</td>
</tr>
<tr>
<td>data</td>
<td>返回具体结果,object类型,详见data返回字段描述</td>
</tr>
</tbody>
</table>
<h4>code返回码说明</h4>
<table>
<thead>
<tr>
<th>code</th>
<th><div style="width:420px">说明</div></th>
</tr>
</thead>
<tbody>
<tr>
<td>200</td>
<td>成功(计费)</td>
</tr>
<tr>
<td>400</td>
<td>参数错误</td>
</tr>
<tr>
<td>404</td>
<td>接口地址不正确</td>
</tr>
<tr>
<td>500</td>
<td>系统维护,请稍候再试</td>
</tr>
<tr>
<td>601</td>
<td>接口未开通</td>
</tr>
<tr>
<td>602</td>
<td>账号停用</td>
</tr>
<tr>
<td>603</td>
<td>余额不足请充值</td>
</tr>
<tr>
<td>604</td>
<td>接口停用</td>
</tr>
<tr>
<td>606</td>
<td>调用超限,请稍候再试</td>
</tr>
<tr>
<td>609</td>
<td>请求过于频繁,请稍候再试</td>
</tr>
<tr>
<td>610</td>
<td>请求超时</td>
</tr>
<tr>
<td>999</td>
<td>其他,以实际返回为准</td>
</tr>
</tbody>
</table>