稳定、快速、免费的 API 接口服务
女性周边新闻资讯动态
接口地址: https://58.linkpc.net/doc/woman.html
返回格式: JSON
请求方式: GET
请求示例: https://58.linkpc.net/api/woman?num=10
请求参数说明:
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
num | 是 | int | 返回数量1-50,默认10 |
page | 否 | int | 翻页 |
rand | 否 | int | 随机获取 |
word | 否 | String | 检索关键词 |
返回参数说明:
名称 | 类型 | 说明 |
---|---|---|
curpage | int | 当前页 |
allnum | int | 结果数 |
id | String | 新闻唯一ID |
ctime | Date | 发布时间 |
title | String | 文章标题 |
description | String | 文章描述 |
source | String | 文章来源 |
picUrl | String | 封面图片 |
url | String | 文章地址 |
返回示例:
{
"code": 200,
"msg": "success",
"data": {
"curpage": 1,
"allnum": 10,
"newslist": [
{
"id": "48e8b69efe953ef5c0c18ba46a5315ae",
"ctime": "2025-04-02 16:00",
"title": "光速下斑 眼见为白 伊丽莎白雅顿第Ⅲ代银胶精华焕新登场",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/nw\/2025-04-02\/1503\/doc-ineruhuk5306225.shtml"
},
{
"id": "4e647c8fd06f46e936030bbe0ed6ae94",
"ctime": "2025-04-02 13:00",
"title": "分龄精准护肤,让美成为一种状态",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/sk\/2025-04-02\/1200\/doc-inertwev3677753.shtml"
},
{
"id": "83e7340ab1c8a24639e3e86e070c0286",
"ctime": "2025-04-02 12:00",
"title": "“20分钟”护肤效应,肌肤也要大口吸氧!",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/sk\/2025-04-02\/1148\/doc-inertwet9554791.shtml"
},
{
"id": "d8314088d3093f7d097ff5a3133ea99b",
"ctime": "2025-04-02 12:00",
"title": "面部衰老迹象是从平坦的眉毛开始的!立体感眉毛的画法",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/mk\/2025-04-02\/1152\/doc-inertwev3675617.shtml"
},
{
"id": "f2b8f368e1953b4b7d72772f3e25efb4",
"ctime": "2025-04-01 12:00",
"title": "IPSA茵芙莎第7代「白瘦子」防晒经典再升级!",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/2025-04-01\/1129\/doc-inerrnxs6374692.shtml"
},
{
"id": "fc4c871ec5bca2f17b850c5382119ceb",
"ctime": "2025-03-31 15:00",
"title": "增加贵气感!贵气到极致就流行穿得“土”?",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/s\/2025-03-31\/1418\/doc-inerpqhq7178887.shtml"
},
{
"id": "b3e30fcff707ca31b807bd7d6f9ba023",
"ctime": "2025-03-31 15:00",
"title": "More is more?一头扎进极繁主义的狂欢派对!",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/s\/2025-03-31\/1429\/doc-inerpqhn8238591.shtml"
},
{
"id": "ad064beddfbb26aa6b66160466cafb88",
"ctime": "2025-03-31 15:00",
"title": "“淡人”的舒适区,平底鞋热潮来袭!",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/s\/2025-03-31\/1437\/doc-inerpqhu1230940.shtml"
},
{
"id": "8006027c64bb422e5d4d5107f6d338b1",
"ctime": "2025-03-31 15:00",
"title": "这个春天你想成为什么味道的“可露丽”?",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/s\/2025-03-31\/1446\/doc-inerpqhu1233901.shtml"
},
{
"id": "8b13869ed3d50eec43f9f7a3a329068f",
"ctime": "2025-03-26 13:00",
"title": "脸上突然冒出一堆小疹子,是换季过敏?",
"description": "",
"source": "新浪女性",
"picUrl": "",
"url": "https:\/\/fashion.sina.com.cn\/b\/sk\/2025-03-26\/1224\/doc-ineqxyiq6184485.shtml"
}
]
}
}
错误码格式说明:
名称 | 类型 | 说明 |
---|
代码示例:
<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/woman';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);