## 女性新闻 >[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210) ![](https://img.kancloud.cn/24/de/24def82071b20be7975856a9f3d950d9_100x100.png) > 新浪女性新闻频道,返回女人、女性相关新闻资讯数据。 ## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086)) ### 请求地址 ``` GET https://api.topthink.com/news/woman ``` ### 请求参数 | 名称 | 类型 | 必填 | 说明 | | --- | --- | --- | --- | | appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) | | num | int | 是 | 返回数量1-50,默认10 | | page | int | 否 | 翻页 | | word | string | 否 |检索关键词 | ### 返回`data`参数 | 名称 | 类型 | 示例值 | 说明 | | --- | --- | --- | --- | | ctime | string | 2020-07-01 16:01 | 时间 | | title | string | 生育能力强的女性,是人生的优势还是宿命? | 标题 | | description | string | 女性新闻 | 描述 | | picUrl | string | http://n.sinaimg.cn/sinakd20200701ac/40/w480h360/20200701/8ff8-ivrxcey0503663.jpg | 封面 | | url | string | https://k.sina.com.cn/article\_6413775891\_17e4a741300100yk95.html?from=baby | 链接 | ## SDK调用 ``` $client = new Client("YourAppCode"); $result = $client->newsWoman() ->withNum(10) ->request(); ``` 返回示例: ~~~ { "code":0, "message": "成功", "data": [ { "ctime":"2020-07-01 15:47", "title":"生育能力强的女性,是人生的优势还是宿命?", "description":"女性新闻", "picUrl":"http://n.sinaimg.cn/sinakd20200701ac/40/w480h360/20200701/8ff8-ivrxcey0503663.jpg", "url":"https://k.sina.com.cn/article_6413775891_17e4a741300100yk95.html?from=baby" }, { "ctime":"2020-07-01 16:01", "title":"演员韩惠珍出席品牌活动清新形象展现优雅女性魅力", "description":"女性新闻", "picUrl":"http://n.sinaimg.cn/sinakd10116/26/w520h306/20200701/97b9-ivrxcey0542311.jpg", "url":"https://k.sina.com.cn/article_6423891599_17ee4ce8f00100s13q.html?from=finance" }, { "ctime":"2020-07-01 16:06", "title":"一年巨亏13亿,关闭90%的门店!这家女性内衣龙头企业陷困境...", "description":"女性新闻", "picUrl":"http://n.sinaimg.cn/sinakd20200701s/557/w678h679/20200701/5e1e-ivrxcey0606198.jpg", "url":"https://k.sina.com.cn/article_1651428902_626ece2601900qkac.html?from=finance" } ] } ~~~