## 神回复 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/c2/90/c29073576709dfe260ee5a84a29d71a0_200x200.png) > 各大知识社区上,经常会有段子手,凭借着满腹才(逗)华(比),写出惊天地泣鬼神的神回复!初看之下拍案叫绝,细品之下回味无穷。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/wiki/godreply ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | num| int| 否 | 返回数量,1-10| ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | title | string | 最讨厌别人骂我傻逼,没一点道德素养,没听过骂人不揭短吗? | 标题 | | content | string | 所以我没有脱你的裤子啊。 | 内容 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->wikiGodreply() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "title":"最讨厌别人骂我傻逼,没一点道德素养,没听过骂人不揭短吗?", "content":"所以我没有脱你的裤子啊。" } ] } ~~~