## 绕口令 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/e6/4a/e64a4cfca4a46c5076d6168633579b3a_200x200.png) > 绕口令,初入江湖都会化肥会挥发。娱乐类小程序必备接口。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/wiki/tongue ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string|是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | num| string | 否 | 返回数量 1-10| ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | content | string | 内容 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->wikiTongue() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "content":"香肠长,长香肠,炒香肠,尝香肠,常炒香肠,常尝香肠。" } ] } ~~~