## 互联网资讯 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/0a/cf/0acfe3385731b6fd684bb6615da68a6d_200x200.png) > 互联网资讯新闻接口,互联网新闻动态。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/internet ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsInternet() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-04-17 19:53", "title":"短视频移动应用抖音国际版TikTok遭印度政府下架", "description":"网易互联网", "picUrl": "http://cms-bucket.ws.126.net/2019/04/16/7f127e75779b4493bfed4ddde5b656b7.png?imageView&thumbnail=200y140", "url":"https://tech.163.com/19/0416/22/ECTUM76300097U7R.html" }, { "ctime":"2019-04-17 19:53", "title":"深交所接连扒皮问询,华大基因上市堪称渡劫", "description": "网易互联网", "picUrl": "http://cms-bucket.ws.126.net/2019/04/17/49d18e5519f444a0b0b1854f791b8b93.png?imageView&thumbnail=200y140", "url": "https://tech.163.com/19/0417/07/ECUSUIHS00097U7R.html" }, { "ctime":"2019-04-17 19:53", "title": "去年的事并未结束 女大学生在美起诉刘强东和京", "description":"网易互联网", "picUrl":"http://cms-bucket.ws.126.net/2019/04/17/9410bcfbb4834171a7f6546c96c0b1e4.png?imageView&thumbnail=200y140", "url":"https://tech.163.com/19/0417/07/ECURTO5T00097U7R.html" } ] } ~~~