## 顺口溜 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/0f/54/0f54e02a4491dce8d194efecd884a31d_200x200.png) > 民间流行的一种好玩有趣的口头韵文 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/wiki/doggerel ``` ### 请求参数 无 ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | content | string | 内容 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->wikiDoggerel() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "content":"单的单,独的独,剁到屁儿不带哭。" } ] } ~~~