地区新闻
最后更新于:2022-04-02 08:20:20
## 地区新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/0c/5b/0c5bbf5a4cd2275edaaaba23a928471a_209x200.png)
> 全国各省份、直辖市、特别行政区等地区新闻资讯
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/area
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| areaname | string | 是 | 地区名,不要带“省”或“市” |
| word | string | 否 | 搜索某地区下的新闻关键词 |
| page | int | 否 | 翻页 |
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| title | string | 大雾橙色预警!湖北多地现能见度小于200米的雾 | 新闻标题 |
| picUrl | string | http://n.sinaimg.cn/hb/87/w574h313/20191202/00f9-ikcacer4044078.jpg | 新闻配图 |
| description | string | | 新闻简介 |
| source | string | 湖北天气 | 新闻来源 |
| url | string | http://hb.sina.com.cn/news/j/2019-12-02/detail-iihnzhfz3050537.shtml | 新闻链接 |
| ctime | string | 2019-12-02 10:51:00 | 新闻时间 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->newsArea()
->withAreaname('湖北')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-12-02 14:13:00",
"title":"【中国稳健前行】把握党的领导制度体系丰富内涵",
"description":"",
"picUrl":"",
"url":"http://news.cnhan.com/html/yaowen/20191202/1048058.htm",
"source":"汉网"
},
{
"ctime":"2019-12-02 11:39:00",
"title":"湖北省二〇一九年“宪法宣传周”活动在汉启动蒋超良作批示",
"description":"",
"picUrl":"",
"url":"http://news.cnhan.com/html/yaowen/20191202/1048045.htm",
"source":"汉网"
},
{
"ctime":"2019-12-02 11:18:00",
"title":"湖北省市监局审批新政企业开办压缩至2个工作日内",
"description":"",
"picUrl":"http://n.sinaimg.cn/hb/transform/266/w640h426/20191202/07ac-ikcacer4180912.jpg",
"url":"http://hb.sina.com.cn/news/j/2019-12-02/detail-iihnzahi4708823.shtml",
"source":"综合"
}
]
}
~~~
';