## 人工智能 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/5f/e0/5fe002ed79e846db6b5a9041bd14c6a9_200x200.png) > 人工智能AI行业新闻、舆论、热点、行业动态新闻资讯等。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/ai ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsAi() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-03-2013:57", "title":"贝尔科教王作冰:人工智能重构社会分工AIQ理论引领教育变革", "description":"A5智能", "picUrl":"https://a5img.pncdn.cn/2019/0320/1553061467469.jpg?x-oss-process=image/resize,m_fixed,w_220,h_120", "url":"https://www.admin5.com/article/20190320/900773.shtml" }, { "ctime":"2019-03-2010:20", "title":"GarminMARQ系列高端智能腕表领航巅峰人生", "description":"A5智能", "picUrl":"https://a5img.pncdn.cn/2019/0320/1553048423389.jpg?x-oss-process=image/resize,m_fixed,w_220,h_120", "url":"https://www.admin5.com/article/20190320/900675.shtml" }, { "ctime":"2019-03-2009:55", "title":"自动驾驶权力争夺战:科技公司正式取代传统车企", "description":"A5智能", "picUrl":"https://a5img.pncdn.cn/2019/0319/1552965404958.jpg?x-oss-process=image/resize,m_fixed,w_220,h_120", "url":"https://www.admin5.com/article/20190320/900667.shtml" } ] } ~~~