## 猜灯谜 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/de/3f/de3fe3fdb7caedaaf3c9e42d554cca33_200x200.png) > 趣味猜灯谜接口 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/wiki/lantern ``` ### 请求参数 无 ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | riddle | string | 头上长树杈,身上有白花,四腿跑得快,生长在山野。 | 谜语 | | answer | string | 梅花鹿 | 谜底 | | disturb | string | 黄水牛山羊羚驴子马骆驼长颈犀大象奶娟珊鲁西 | 干扰项 | | description | string | 梅花鹿,有着像树枝的鹿角,跳跃能力很强,尤其善长攀登陡坡,那连续大跨度的跳跃,速度轻快敏捷。 | 详细描述 | | type | string | 打一动物 | 分类 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->wikiLantern() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "riddle":"头上长树杈,身上有白花,四腿跑得快,生长在山野。", "answer":"梅花鹿", "disturb":"黄水牛山羊羚驴子马骆驼长颈犀大象奶娟珊鲁西", "description":"梅花鹿,有着像树枝的鹿角,跳跃能力很强,尤其善长攀登陡坡,那连续大跨度的跳跃,速度轻快敏捷。", "type":"打一动物" } ] } ~~~