## 农业新闻 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/51/36/5136b7c3f578ed06fbd7457209f334de_200x200.png) > 农业新闻资讯接口,返回农村农业农科等相关新闻数据。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/agriculture ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | 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->newsAgriculture() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2020-08-02 20:43", "title":"江门:乡村振兴战略出实效 昂首迈向农业农村现代化", "description": "农业新闻", "picUrl":"http://n.sinaimg.cn/sinakd202082s/40/w470h370/20200802/5bd5-ixeeirz5358603.jpg", "url":"https://k.sina.com.cn/article_2217106561_84265c8102000v1pi.html?from=news&subch=onews" }, { "ctime":"2020-08-02 21:00", "title":"设施农业助农致富", "description":"农业新闻", "picUrl":"http://n.sinaimg.cn/default/feedbackpics/transform/116/w550h366/20180409/gDCK-fytnfyp1107789.png", "url": "https://k.sina.com.cn/article_5679255612_p15282903c02700qryi.html?from=news&subch=photo" }, { "ctime":"2020-08-02 21:01", "title":"山东创新要素为农业产业“强链”“补链” 农业科技园区推动乡村振兴迸发生机", "description":"农业新闻", "picUrl":"http://n.sinaimg.cn/sinakd20121/536/w800h536/20200802/420e-ixeeirz5353789.jpg", "url":"https://k.sina.com.cn/article_1409641392_v54056bb001900y7vl.html?from=news&subch=onews" } ] } ~~~