## 微信阅读数 ![](https://img.kancloud.cn/50/f0/50f090be27281a78999fd4379f0070e5_200x200.png) > 该接口可获取微信公众号某篇文章的标题、阅读数、点赞(喜欢、在看)数以及评论数量。请注意:url必须为永久链接。 ## 接口费用( [点击购买](https://market.topthink.com/product/168)) > 最低 0.06元/次 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/wechat/read ``` ### 请求参数 | 名称 | 必填 | 类型 | 说明 | | --- | --- | --- | --- | | appCode| 是| string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | url| 是 | string | 未过期的微信文章链接| ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | title | string | 微信文章标题 | | readnum | int | 阅读数 | | likenum | int | 在看数 | | givenum | int | 点赞数 | | commentnum | int | 评论数 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->wechatRead() ->withUrl('微信链接地址') ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功的返回", "data": [ { "title":"腾讯封杀多闪!头疼大战在即?", "readnum":291, "likenum":2, "givenum":12, "commentnum":2 } ] } ~~~