CBA新闻
最后更新于:2022-04-02 08:20:50
## CBA新闻
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/31/80/318055553aec6fa9db23cd0f41840e44_200x200.png)
> 中国男子职业篮球赛、CBA明星动态资讯等。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/news/cba
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| 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->newsCba()
->withNum(10)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ctime":"2019-03-20 12:40",
"title":"法国篮协主席:将以最强阵容出战沈阳热身赛",
"description":"CBA新闻",
"picUrl":"http://d.ifengimg.com/w145_h103/e0.ifengimg.com/01/2019/0320/195AEB4C055DF625A2A4A840E24888A865C8910F_size44_w660_h300.jpeg",
"url":"http://sports.ifeng.com/a/20190320/60560401_0.shtml"
},
{
"ctime":"2019-03-20 09:00",
"title":"传奇谢幕?39岁刘炜表态也许结束球员生涯强忍泪水道谢上海球迷",
"description":"CBA新闻",
"picUrl":"http://d.ifengimg.com/w145_h103/e0.ifengimg.com/05/2019/0319/5C80E0ECF193568E6B181C900280ABB97ACA8D9F_size29_w640_h404.jpeg",
"url":"http://sports.ifeng.com/a/20190319/60560027_0.shtml"
},
{
"ctime":"2019-03-20 08:10",
"title":"男篮背锅侠?本土第一后卫?我们该如何铭记刘炜……",
"description":"CBA新闻",
"picUrl":"http://d.ifengimg.com/w145_h103/e0.ifengimg.com/05/2019/0320/8ED0630BB6081FA2596DB6868732CA5E83766685_size109_w960_h604.jpeg",
"url":"http://sports.ifeng.com/a/20190320/60470332_0.shtml"
}
]
}
~~~
';