## 社会新闻 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/75/7c/757cd24c283c8d4106f3922c4f704420_200x200.png) >社会新闻API接口服务,我们都在社会里,我们都是社会人。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/social ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | num | int | 是 | 返回数量1-50,默认10 | | page | int | 否 | 翻页 | | word | string | 否 | 检索关键词 | ### 返回`data`参数 | 名称 | 类型 | 说明 | | --- | --- | --- | | ctime | string | 时间 | | title | string | 标题 | | description | string | 描述 | | picUrl | string | 封面 | | url | string | 链接 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->newsSocial() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-03-19 15:55", "title":"科比开导杨超越勇敢追梦,不要太在意网络舆论", "description":"中华社会", "picUrl":"https://img2.utuku.china.com/162x110/news/20190319/1ca5ea5d-c454-4e96-b203-63157d912cad.png", "url":"https://news.china.com/socialgd/10000169/20190319/35463618.html" }, { "ctime":"2019-03-19 15:53", "title":"崔钟勋承认与尹总警交情曾一起打高尔夫", "description":"中华社会", "picUrl":"https://img3.utuku.china.com/162x110/news/20190319/f867f9f3-ce7a-49cc-be2b-f0dd4c39beda.jpg", "url":"https://news.china.com/socialgd/10000169/20190319/35463599.html" }, { "ctime":"2019-03-19 15:51", "title":"山东日照银行岚山中心支行有个“妈妈帮”", "description":"中华社会", "picUrl":"https://img3.utuku.china.com/162x110/news/20190319/caa5977f-4b7b-4a6f-b2a9-34a4fd5e765b.jpg", "url":"https://news.china.com/socialgd/10000169/20190319/35463570.html" } ] } ~~~