## 财经新闻 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/24/65/2465044e96d85bbf8dfe9e8c212ece78_275x200.png) > 财经资讯API接口 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/finance ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsFinance() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2019-03-06 12:00", "title":"湖南久丰国际商品现货交易市场关于2017年清明节放假安排的通知", "description":"龙讯财经", "picUrl":"https://img.longaa.com/ueditorImg/1495765410040.jpeg!135x90", "url":"https://www.longau.com/article/2017-3-29/1490764745666.html" }, { "ctime":"2019-03-06 12:00", "title":"上海华通白银国际交易中心关于下线“云商城”业务的公告", "description":"龙讯财经", "picUrl":"https://img.longaa.com/ueditorImg/1496286537860.png!135x90", "url":"https://www.longau.com/article/2017-3-30/1490856810966.html" }, { "ctime":"2019-03-06 12:00", "title":"湖南华夏商品交易市场发布关于停止新开户等业务的通知", "description":"龙讯财经", "picUrl":"https://img.longaa.com/ueditorImg/1496199172258.jpg!135x90", "url":"https://www.longau.com/article/2017-3-30/1490856307633.html" } ] } ~~~