抖音商品搜索
<h3>接口描述</h3>
<ul>
<li>抖音商品搜索,可应用于商品销售情况分析,电商选品分析,品牌口碑挖掘和竞争对手分析等。</li>
<li>支持分页</li>
</ul>
<h3>请求地址</h3>
<p><code>https://api.jumdata.com/douyin/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>cursor</td>
<td>int</td>
<td>否</td>
<td>分页 第一页传0, 后续页传上一页返回的cursor, 默认: 0</td>
</tr>
<tr>
<td>sort</td>
<td>String</td>
<td>否</td>
<td>排序 <br/>1 综合<br/>2 价格升序<br/>3 价格降序<br/>4 销量 <br/>默认: 1</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;507408590179669326268387&quot;,
&quot;charge&quot;: true,
&quot;data&quot;: {
&quot;search_text&quot;: &quot;风衣&quot;, // 搜索词
&quot;cursor&quot;: 10, // 本页最后一个商品的位置,获取下一页商品时,需要转入该参数
&quot;has_more&quot;: true, // 是否还有更多数据
&quot;items&quot;: [
{
&quot;result_type&quot;: 22,
&quot;select_info&quot;: {
&quot;business_info&quot;: {
&quot;supermarket_pop&quot;: {
&quot;condition_field&quot;: &quot;supermarket_pop&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;小时购&quot;
},
&quot;filter_by_921_campaign&quot;: {
&quot;condition_field&quot;: &quot;activity&quot;,
&quot;condition_value&quot;: &quot;921project&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;921好物节&quot;
},
&quot;sort_by_sale&quot;: {
&quot;condition_field&quot;: &quot;sale&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;sale&quot;
},
&quot;sort_by_price&quot;: {
&quot;condition_field&quot;: &quot;price&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;price&quot;
},
&quot;filter_by_billion_subsidy&quot;: {
&quot;condition_field&quot;: &quot;billion_subsidy&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;百亿补贴&quot;
},
&quot;filter_by_campaign&quot;: {
&quot;condition_field&quot;: &quot;campaign&quot;,
&quot;condition_value&quot;: &quot;38coupon&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;campaign_38coupon&quot;
},
&quot;filter_by_input_price&quot;: {
&quot;condition_field&quot;: &quot;&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;&quot;
},
&quot;filter_by_location&quot;: {
&quot;condition_field&quot;: &quot;&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;&quot;
},
&quot;brand_live&quot;: {
&quot;condition_field&quot;: &quot;brand_live&quot;,
&quot;condition_value&quot;: &quot;brand_live&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;品牌直播&quot;
},
&quot;has_buy&quot;: {
&quot;condition_field&quot;: &quot;has_buy&quot;,
&quot;condition_value&quot;: &quot;has_buy&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;我买过的&quot;
},
&quot;sort_by_general&quot;: {
&quot;condition_field&quot;: &quot;&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;&quot;
},
&quot;sort_by_hot&quot;: {
&quot;condition_field&quot;: &quot;hot&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;hot&quot;
},
&quot;sort_by_price_desc&quot;: {
&quot;condition_field&quot;: &quot;price&quot;,
&quot;condition_value&quot;: &quot;desc&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;price&quot;
},
&quot;sort_by_price_asc&quot;: {
&quot;condition_field&quot;: &quot;price&quot;,
&quot;condition_value&quot;: &quot;asc&quot;,
&quot;type&quot;: &quot;sort&quot;,
&quot;log_text&quot;: &quot;price&quot;
},
&quot;my_follow&quot;: {
&quot;condition_field&quot;: &quot;follow&quot;,
&quot;condition_value&quot;: &quot;follow&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;我的关注&quot;
},
&quot;filter_by_living&quot;: {
&quot;condition_field&quot;: &quot;live&quot;,
&quot;condition_value&quot;: &quot;&quot;,
&quot;type&quot;: &quot;filter&quot;,
&quot;log_text&quot;: &quot;直播中&quot;
}
},
&quot;style_info&quot;: {
&quot;default_double_text_style_in_select_board&quot;: {
&quot;default_text_color&quot;: &quot;#FF161823&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_postscript_text_color&quot;: &quot;#FF161823&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_bg_color&quot;: &quot;#00161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;#1E161823&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;supermarket_pop&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/4c488353370d4241b7da8692d65705ad.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 12,
&quot;height&quot;: 12
},
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/c28ed30ee3bf4a18ba634e134efeb535.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 12,
&quot;height&quot;: 12
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;nil_style&quot;: {
&quot;default_text_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;price_sort_with_updown_arrow&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/d377e04c8c5847a4ae925aa53a704d97.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 14
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;ascending_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/cc7696117fb44cf385ea73f72a5e7c32.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 14
},
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;descending_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/07104ce3aa5f4e5194ea4d6b3027159e.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 14
},
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;nianhuojie_style_three_line&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#FFFFFFFF&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_text_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/64a218d26e264e29a9a96e330d624149.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 37,
&quot;height&quot;: 16
},
&quot;selected_text_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/64a218d26e264e29a9a96e330d624149.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 37,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;billion_subsidy_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/bf7ab03e46834860bafee3342fff66dc.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/847e21ad576147b485077a7e36e05d9c.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;living_style_without_head_icon&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;nianhuojie_manjian_style_three_line&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#FFFFFFFF&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_text_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/2080351dbc56411caa03057d41d79c35.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 68,
&quot;height&quot;: 16
},
&quot;selected_text_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/2080351dbc56411caa03057d41d79c35.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 68,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;drop_down_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/015e34d1453f44f89e00fd198f392aeb.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;#0C161823&quot;,
&quot;selecting_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/0a53da18469f47779b85f9078dd2c072.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/7b2613db83d64ef787c806b3c6bcddcb.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selecting_text_color&quot;: &quot;#FF161823&quot;
},
&quot;selecting_board_style&quot;: {
&quot;default_text_color&quot;: &quot;&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/54b020eb7e494848a64d32fe0d34322e.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 20,
&quot;height&quot;: 20
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selecting_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/4d667bec610f4c6fa41825fa1c2f3421.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 20,
&quot;height&quot;: 20
},
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/5f42bcb593d94e29b2203d97126989ed.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 20,
&quot;height&quot;: 20
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;shopping_festival_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;921_campaign_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/cf4a345436f540aab3546e8e2acc78fd.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/7c66f1d35449406ebf3c6dfef332a384.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;selecting_board_style_with_tips&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/702507734fdd4e2e8eb46979ab0df0a4.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selecting_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/e33e5fffe65946bca23fa1477a7a5290.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/5a87553eac304d228181f6434375e05d.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;#FF161823&quot;
},
&quot;drop_down_style_with_default_select&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;default_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/4b688327908642fca3eca7826f5447d1.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selecting_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/d1cb0d969f0247c7b2444bf82f06524f.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/76538239e9c44a7fb83bbc6beb0a75db.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 6,
&quot;height&quot;: 6
},
&quot;selecting_text_color&quot;: &quot;#FFFE2C55&quot;
},
&quot;grey_style_without_bg_color&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;default_single_text_style_in_select_board&quot;: {
&quot;default_text_color&quot;: &quot;#FF161823&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#00161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;#1E161823&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;default_style_in_drop_down_list&quot;: {
&quot;default_text_color&quot;: &quot;#FF161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_tail_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/6fe9003e7d91436581a1193a0c003779.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;living_style_with_head_icon&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/cc75973e13d844239d90c073097b0d76.gif~tplv-nwfy1fis1k-awebp.gif&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/0106e367220a4a1cb2467e127a8e2b44.gif~tplv-nwfy1fis1k-awebp.gif&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;price_double_text_style_in_select_board&quot;: {
&quot;default_text_color&quot;: &quot;#FF161823&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_postscript_text_color&quot;: &quot;#66161823&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;default_bg_color&quot;: &quot;#00161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;#1E161823&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;full_reduction_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/84ee303c7b7b473a86027c24f362fdf4.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/10808a07af7f4c0db20d519b4d6d9c09.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;default_style_without_bg_color&quot;: {
&quot;default_text_color&quot;: &quot;#FF161823&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;ecom_live_mingle_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;coupon_industry_style&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/84ee303c7b7b473a86027c24f362fdf4.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selected_head_icon&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/10808a07af7f4c0db20d519b4d6d9c09.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 16,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;single_double_column_switch_style&quot;: {
&quot;image&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/b155b8a046a2437d875105f7dd5fcea0.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 20,
&quot;height&quot;: 20
},
&quot;default_text_color&quot;: &quot;&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;to_image&quot;: {
&quot;icon&quot;: &quot;https://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/44a5b75db93b4b38b279bc3cd307f4e9.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 20,
&quot;height&quot;: 20
},
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;&quot;,
&quot;format&quot;: &quot;double&quot;,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;to_format&quot;: &quot;single_column&quot;,
&quot;selected_bg_color&quot;: &quot;&quot;,
&quot;selected_text_color&quot;: &quot;&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;selecting_text_color&quot;: &quot;&quot;
},
&quot;billion_subsidy_style_use_logo&quot;: {
&quot;default_text_color&quot;: &quot;#99161823&quot;,
&quot;selected_border_color&quot;: &quot;&quot;,
&quot;default_postscript_text_color&quot;: &quot;&quot;,
&quot;selected_postscript_text_color&quot;: &quot;&quot;,
&quot;default_bg_color&quot;: &quot;#0D161823&quot;,
&quot;pattern&quot;: 6,
&quot;default_border_color&quot;: &quot;&quot;,
&quot;selected_bg_color&quot;: &quot;#0FFE2C55&quot;,
&quot;selected_text_color&quot;: &quot;#FFFE2C55&quot;,
&quot;selecting_bg_color&quot;: &quot;&quot;,
&quot;default_text_icon&quot;: {
&quot;icon&quot;: &quot;http://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/czg_default_light.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 51,
&quot;height&quot;: 16
},
&quot;selected_text_icon&quot;: {
&quot;icon&quot;: &quot;http://p3-ecom-search.byteimg.com/tos-cn-i-nwfy1fis1k/czg_select_all.png~tplv-nwfy1fis1k-image.image&quot;,
&quot;width&quot;: 51,
&quot;height&quot;: 16
},
&quot;selecting_text_color&quot;: &quot;&quot;
}
},
&quot;render_info&quot;: [
{
&quot;left_padding&quot;: 16,
&quot;render&quot;: [
{
&quot;component_type&quot;: &quot;SORT&quot;,
&quot;component_id&quot;: &quot;c_dropdown_with_default_select&quot;,
&quot;children_component&quot;: [
{
&quot;need_mutex&quot;: 1,
&quot;component_id&quot;: &quot;c_default&quot;,
&quot;data_id&quot;: &quot;sort_by_general&quot;,
&quot;is_default_select&quot;: true,
&quot;text&quot;: &quot;综合&quot;,
&quot;english_text&quot;: &quot;general&quot;,
&quot;style_id&quot;: &quot;default_style_without_bg_color&quot;
},
{
&quot;need_mutex&quot;: 1,
&quot;component_id&quot;: &quot;c_default&quot;,
&quot;data_id&quot;: &quot;sort_by_price_asc&quot;,
&quot;is_default_select&quot;: false,
&quot;text&quot;: &quot;价格升序&quot;,
&quot;english_text&quot;: &quot;priceAsc&quot;,
&quot;style_id&quot;: &quot;default_style_without_bg_color&quot;
},
{
&quot;need_mutex&quot;: 1,
&quot;component_id&quot;: &quot;c_default&quot;,
&quot;data_id&quot;: &quot;sort_by_price_desc&quot;,
&quot;is_default_select&quot;: false,
&quot;text&quot;: &quot;价格降序&quot;,
&quot;english_text&quot;: &quot;priceDesc&quot;,
&quot;style_id&quot;: &quot;default_style_without_bg_color&quot;
}
],
&quot;column_count&quot;: 1,
&quot;width&quot;: 68,
&quot;style_id&quot;: &quot;drop_down_style_with_default_select&quot;,
&quot;height&quot;: 20
},
{
&quot;need_mutex&quot;: 1,
&quot;component_type&quot;: &quot;SORT&quot;,
&quot;component_id&quot;: &quot;c_default&quot;,
&quot;data_id&quot;: &quot;sort_by_sale&quot;,
&quot;is_default_select&quot;: false,
&quot;width&quot;: 60,
&quot;text&quot;: &quot;销量&quot;,
&quot;english_text&quot;: &quot;sale&quot;,
&quot;style_id&quot;: &quot;grey_style_without_bg_color&quot;,
&quot;height&quot;: 20
},
{
&quot;component_type&quot;: &quot;LIVE_OR_COMMODITY&quot;,
&quot;component_id&quot;: &quot;c_default&quot;,
&quot;data_id&quot;: &quot;filter_by_living&quot;,
&quot;width&quot;: 76,
&quot;postscript_text&quot;: &quot;xxx&quot;,
&quot;text&quot;: &quot;直播中&quot;,
&quot;english_text&quot;: &quot;live&quot;,
&quot;style_id&quot;: &quot;living_style_with_head_icon&quot;,
&quot;height&quot;: 20
},
{
&quot;component_id&quot;: &quot;c_column_switch&quot;,
&quot;data_id&quot;: &quot;单双列切换&quot;,
&quot;width&quot;: 48,
&quot;style_id&quot;: &quot;single_double_column_switch_style&quot;,
&quot;height&quot;: 20
},
{
&quot;component_id&quot;: &quot;c_vertical_line&quot;,
&quot;width&quot;: 0.5,
&quot;height&quot;: 16
},
{
&quot;component_id&quot;: &quot;c_select_board&quot;,
&quot;width&quot;: 76,
&quot;text&quot;: &quot;筛选&quot;,
&quot;english_text&quot;: &quot;select&quot;,
&quot;style_id&quot;: &quot;selecting_board_style_with_tips&quot;,
&quot;height&quot;: 20
}
],
&quot;enable_scroll&quot;: false,
&quot;top_padding&quot;: 0,
&quot;component_width_strategy&quot;: &quot;fromServer&quot;,
&quot;height&quot;: 44,
&quot;right_padding&quot;: 0,
&quot;bottom_padding&quot;: 0
}
]
},
&quot;show_on_style&quot;: [
&quot;double&quot;,
&quot;single_column&quot;,
&quot;single_card&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>