## 生活小窍门 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/4a/74/4a746084947b756147d703ec84635cd9_200x200.png) > 随机返回一条日常生活小技巧、小窍门,字数在210字以内。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/life/tip ``` ### 请求参数 无 ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | content | string | 煮蛋时,若在水中加入少许食盐,蛋壳就不易破裂。 | 内容 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->lifeTip() ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "content":"煮蛋时,若在水中加入少许食盐,蛋壳就不易破裂。" } ] } ~~~