创业资讯
最后更新于:2022-04-02 08:21:11
## 创业资讯
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/57/7d/577d53674eacda110b868951ab7ae966_200x200.png)
>万众创业,大众创新。在这里了解有关各行各业特别是互联网行业的知名人物、热门产品等新闻动态。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/startup
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->newsStartup()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-03-20 14:00",
"title":"爱库存联合创始人冷静:不卖爆款,只卖库存",
"description":"创业资讯",
"picUrl":"https://a5img.pncdn.cn/2019/0320/1553061608307.png?x-oss-process=image/resize,m_fixed,w_220,h_120",
"url":"https://www.admin5.com/article/20190320/900778.shtml"
},
{
"ctime":"2019-03-19 16:06",
"title":"畅信达智能录音质检开启全维度呼叫中心运营管理模式",
"description":"创业资讯",
"picUrl":"https://a5img.pncdn.cn/2019/0319/1552974601652.png?x-oss-process=image/resize,m_fixed,w_220,h_120",
"url":"https://www.admin5.com/article/20190319/900581.shtml"
},
{
"ctime":"2019-03-19 13:50",
"title":"315智能电销侵犯隐私被禁,小名片助力破解企业获客难题",
"description":"创业资讯",
"picUrl":"https://a5img.pncdn.cn/2019/0319/1552974601652.png?x-oss-process=image/resize,m_fixed,w_220,h_120",
"url":"https://www.admin5.com/article/20190319/900464.shtml"
}
]
}
~~~
';