## 苹果新闻 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/d2/a3/d2a310f8e4034513873a37feb3a9be97_200x200.png) >果粉最关注的新闻,例如IOS教程帮助、苹果公司、IOS系统更新等相关资讯。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/apple ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsApple() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-03-20 15:00", "title":"iOS12.2beta6暗示AirPower可能很快发布", "description":"苹果新闻", "picUrl":"http://im5.tongbu.com/ArticleImage/92c374b6-7.jpg?w=480,343,00.jpg", "url":"http://news.tongbu.com/97335.html" }, { "ctime":"2019-03-20 15:00", "title":"苹果新iPad跑分首曝:2.49GHz主频3GB内存", "description":"苹果新闻", "picUrl":"http://im5.tongbu.com/tbnews/201903/d1b14a93-3.jpg?w=600,517&b=51", "url":"http://news.tongbu.com/97336.html" }, { "ctime":"2019-03-19 13:00", "title":"苹果发布iOS12.2beta6应该是iOS12.2最后一...", "description":"苹果新闻", "picUrl":"http://im5.tongbu.com/ArticleImage/dd5861f5-0.jpg?w=480,343,03.jpg", "url":"http://news.tongbu.com/97333.html" } ] } ~~~