国内新闻
最后更新于:2022-04-02 08:21:27
## 国内新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/b6/02/b6026b26b66d61838162058b54676043_200x200.png)
>国内新闻API接口服务,及时了解国内每时每刻发生的新闻大事。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/internal
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->newsInternal()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-03-2014:21",
"title":"副局长开会跷二郎腿抖脚韩国瑜怒:哪个单位的!",
"description":"中华国内",
"picUrl":"https://img1.utuku.china.com/162x110/news/20190320/44eb97f1-344a-4700-b346-cee5042ab302.jpg",
"url":"https://news.china.com/focus/taiwan/11165943/20190320/35472297.html"
},
{
"ctime":"2019-03-2011:30",
"title":"两部门:今年退休人员基本养老金调整比例在5%左右",
"description":"中华国内",
"picUrl":"https://img2.utuku.china.com/162x110/news/20190320/f6fbd0e3-bc16-4a9b-a591-513f16ed6e72.png",
"url":"https://news.china.com/domestic/945/20190320/35471227.html"
},
{
"ctime":"2019-03-2009:05",
"title":"歼-15舰载战斗机“伙伴加油”训练视频曝光!",
"description":"中华国内",
"picUrl":"https://img0.utuku.china.com/162x110/news/20190320/d555a845-c6d5-44f2-88e8-bb68365c7c42.jpg",
"url":"https://news.china.com/domestic/945/20190320/35468100.html"
}
]
}
~~~
';