微信数据接口


实时获取视频号搜索列表

<h5>简要描述</h5> <ul> <li>实时获取视频号搜索列表(支持分页)</li> <li><code>注意:接口有限频,每次调用需要间隔1秒</code></li> </ul> <h5>收费标准</h5> <ul> <li><code>按调用次数:5分钱/次</code></li> </ul> <h5>请求URL</h5> <ul> <li><code>http://data.wxrank.com/weixin/getsf?key=xxx&amp;amp;keyword=电影</code></li> </ul> <h5>请求方式</h5> <ul> <li>GET / POST</li> </ul> <h5>参数</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">必选</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">key</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>密钥</td> </tr> <tr> <td style="text-align: left;">keyword</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>搜索关键词</td> </tr> <tr> <td style="text-align: left;">cursor</td> <td style="text-align: left;">否</td> <td style="text-align: left;">int</td> <td>分页游标,首页不填写</td> </tr> </tbody> </table> <h5>返回示例</h5> <pre><code>{     &amp;quot;code&amp;quot;: 0,     &amp;quot;data&amp;quot;: {         &amp;quot;list&amp;quot;: [             {                 &amp;quot;nickname&amp;quot;: &amp;quot;顾我电影&amp;quot;,                 &amp;quot;username&amp;quot;: &amp;quot;v2_060000231003b20faec8c4eb8b1ac0d7c605e436b077d046e000ab376cfcf7937acead63edf8@finder&amp;quot;,                 &amp;quot;signature&amp;quot;: &amp;quot;没有任何解说可以代替原片\n好电影值得你体验完整剧情&amp;quot;,                 &amp;quot;profession&amp;quot;: &amp;quot;影视综艺博主&amp;quot;,                 &amp;quot;headImgUrl&amp;quot;: &amp;quot;https://wx.qlogo.cn/finderhead/ver_1/Hxicbrh8F85gRpqx9J1L2yGPkicOuRWfpzPPibf9oxNIZLAjlGcv3BtyiaHpVAgwSmpNARic5zQZxnvdWEvZib9mqGNQ/0&amp;quot;             },             {                 &amp;quot;nickname&amp;quot;: &amp;quot;腾讯电影&amp;quot;,                 &amp;quot;username&amp;quot;: &amp;quot;v2_060000231003b20faec8c7ea8a1fc0d3cc05e531b0779f5fd67d82cb034ab908c3531851263c@finder&amp;quot;,                 &amp;quot;signature&amp;quot;: &amp;quot;一只爱电影的&amp;quot;,                 &amp;quot;profession&amp;quot;: &amp;quot;深圳市腾讯计算机系统有限公司&amp;quot;,                 &amp;quot;headImgUrl&amp;quot;: &amp;quot;https://wx.qlogo.cn/finderhead/ver_1/4ibuz1zfVVxpXDXtlrP77qJWYSEaaia6JG5RXaus4rBiazibYM5wfkXvtCHKLmnrKT1ly66RmEYyakXaeoZOuMhL0k3AIJwdUt8oLC4vTpxzaQU/0&amp;quot;             },             {                 &amp;quot;nickname&amp;quot;: &amp;quot;电影探长&amp;quot;,                 &amp;quot;username&amp;quot;: &amp;quot;v2_060000231003b20faec8c6e08118c5d5ca07eb36b07798bdbc1f6e7ad263ebb79ce3fb0acc02@finder&amp;quot;,                 &amp;quot;signature&amp;quot;: &amp;quot;是修车工又是赛车手\nAI科技发烧友\n喜欢熬夜的解说员\n小米su7的灵魂车主\n商务合作:GSKH000&amp;quot;,                 &amp;quot;profession&amp;quot;: &amp;quot;&amp;quot;,                 &amp;quot;headImgUrl&amp;quot;: &amp;quot;https://wx.qlogo.cn/finderhead/ver_1/hghkghSEOKibqphAgDOBUu5T4yicxq8Uvd3HHmqYBsIYWgukHlDV6jv4ZlYJpGBJ1OJZYUhDZLjfWTBJh6IibzwUXUbLd73gR4iaLXctALdJSicmseH9CHGBlib85BsqfsJzwM/0&amp;quot;             }         ],         &amp;quot;cursor&amp;quot;: &amp;quot;WzgsMTIsMjQsMCw1OCwwLDgwLC01NywtODgsLTg5LC0xMTMsLTk5LC0yMCwtMTAsLTE2LDMxXQ==&amp;quot;     },     &amp;quot;msg&amp;quot;: &amp;quot;剩余29212积分&amp;quot; }</code></pre> <h5>返回参数说明</h5> <table> <thead> <tr> <th style="text-align: left;">参数名</th> <th style="text-align: left;">类型</th> <th>说明</th> </tr> </thead> <tbody> <tr> <td style="text-align: left;">nickname</td> <td style="text-align: left;">string</td> <td>视频号名称</td> </tr> <tr> <td style="text-align: left;">username</td> <td style="text-align: left;">string</td> <td>视频号ID</td> </tr> <tr> <td style="text-align: left;">signature</td> <td style="text-align: left;">string</td> <td>账号简介</td> </tr> <tr> <td style="text-align: left;">profession</td> <td style="text-align: left;">string</td> <td>认证主体</td> </tr> <tr> <td style="text-align: left;">headImgUrl</td> <td style="text-align: left;">string</td> <td>头像链接</td> </tr> <tr> <td style="text-align: left;">cursor</td> <td style="text-align: left;">string</td> <td>分页游标,用来获取下一页</td> </tr> </tbody> </table> <h5>备注</h5> <p>&gt; <code>code 状态判断</code></p> <ul> <li>0:获取成功</li> <li>1000:积分不足</li> <li>1001:关键词不能为空</li> <li>1002:请求失败,请重试</li> <li>1003:请求超时,请重试</li> <li>1008:请求频繁,请稍候</li> <li>9999:QPS超过上限,请稍后再试(每秒不能超过10个)</li> </ul> <p>&gt; 提醒:code=0,扣积分</p>

页面列表

ITEM_HTML