房产新闻
最后更新于:2022-04-02 08:20:27
## 房产新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/82/45/82457b166818fb59e03920c2fce9a778_200x200.png)
> 房产、住宅、写字楼新闻资讯接口
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/house
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->newsHouse()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-07-31 21:38",
"title":"央视热评:炒房者恐怕今后永无“用武之地”了",
"description":"搜狐房产",
"picUrl":"https://t.focus-img.cn/sh160x120sh/zx/smp/592babec26bab0289c136727b1364b93.png",
"url":"https://nj.focus.cn/zixun/87ad9bad995ef789.html"
},
{
"ctime":"2019-07-31 21:30",
"title":"“奋斗拾光幸福启航”绿地泉集团召开改制十周年纪念活动发布会",
"description":"搜狐房产",
"picUrl":"https://t.focus-img.cn/sh160x120sh/xf/xw/9c9a6715-2064-44ac-b08b-7b42aba3ab48.gif",
"url":"https://jn.focus.cn/zixun/2a6034f08bcf41e4.html"
},
{
"ctime":"2019-07-31 21:38",
"title":"大连发布“房价限涨令”:只准跌不准涨跌幅不能超5%",
"description":"搜狐房产",
"picUrl":"https://t.focus-img.cn/sh160x120sh/xf/xw/4711fa64-5b00-491a-98f4-9686b5288d10.JPEG",
"url":"https://gz.focus.cn/zixun/ffa02bb037d4c002.html"
},
{
"ctime":"2024-03-25 09:25",
"title":"合肥市民有望住进“被动式”房屋冬天不需要开空调",
"description":"搜狐房产",
"picUrl":"https://t.focus-img.cn/sh160x120sh/xf/xw/2862fae6-cd3a-4532-85a2-3293633d818e.png",
"url":"https://zixun.focus.cn/6b1c925fa8cc1919.html"
}
]
}
~~~
';