三角洲每日密码

三角洲每日密码 GET 频率:60次/每分钟
https://api.71ywl.com/api/index.php?qy=sjzmm

接口描述

在线获取每日三角洲密码版

请求参数

参数名 类型 必填 示例 说明
ckey string SJKHJDBBDGGE 后台KEY
type string json/text

请求示例

https://api.71ywl.com/api/index.php?qy=sjzmm?type=json

响应示例

{
    "status": "success",
    "message": "每日密码获取成功",
    "data": {
        "update_date": "04月09日每日密码已更新",
        "total_count": 5,
        "passwords": [
            {
                "map_name": "零号大坝",
                "password": "3869",
                "full_text": "零号大坝:3869",
                "location_info": {
                    "description": "在主变电站与游客中心之间,有隐藏的地下入口。 从上图位置下去,进入管道后趴下匍匐即可看到隐藏密码门, 输入零号大坝的今日密码即可打开。",
                    "images": [
                        "https://img.71acg.net/sykb~bbs/pc/1740704856747494",
                        "https://img.71acg.net/sykb~bbs/pc/1740704856738367",
                        "https://img.71acg.net/sykb~bbs/pc/1740731365039849"
                    ]
                }
            },
            {
                "map_name": "长弓溪谷",
                "password": "1760",
                "full_text": "长弓溪谷:1760",
                "location_info": {
                    "description": "在地图右下角荒废村庄下面,同时也是右侧丢包撤离点附近,具体位置如下图 · 有一个明显的地下阶梯,进去就是: 从上图位置下去,即可看到隐藏密码门,输入长弓溪谷的今日密码即可打开。",
                    "images": [
                        "https://img.71acg.net/sykb~bbs/pc/1740731429260819",
                        "https://img.71acg.net/sykb~bbs/pc/1740704856871935"
                    ]
                }
            },
            {
                "map_name": "巴克什",
                "password": "5650",
                "full_text": "巴克什:5650",
                "location_info": {
                    "description": "在地图地图上方老浴场,也在丢包撤离点附近,具体位置如下图 · 在老浴场一楼,外面这一栋房间里面,进去即可看到密码房:",
                    "images": [
                        "https://img.71acg.net/sykb~bbs/pc/1740704856764531",
                        "https://img.71acg.net/sykb~bbs/pc/1740704856746247"
                    ]
                }
            },
            {
                "map_name": "航天基地",
                "password": "4081",
                "full_text": "航天基地:4081",
                "location_info": {
                    "description": "该密码房固定刷在牢二复活点,即地图右侧组装室二楼 · 地上和桌上可能会刷卫星锅:",
                    "images": [
                        "https://img.71acg.net/sykb~bbs/pc/1740704856703640",
                        "https://img.71acg.net/sykb~bbs/pc/1740725350295327"
                    ]
                }
            },
            {
                "map_name": "潮汐监狱",
                "password": "3543",
                "full_text": "潮汐监狱:3543",
                "location_info": {
                    "description": "监狱行政区1楼大厅楼梯拐角处",
                    "images": [
                        "https://img.71acg.net/sykb~bbs/pc/1751616654364471"
                    ]
                }
            }
        ],
        "source": "三角洲行动每日密码",
        "last_updated": "2026-04-09 04:15:35",
        "timestamp": 1775679335
    },
    "metadata": {
        "version": "1.0",
        "author": "tmini.net"
    }
}

返回参数

参数名 类型 说明
status string 状态,例如
message string 提示信息,例如
data object 数据对象
data.update_date string 更新日期提示,例如
data.total_count number 密码总数
data.passwords array 密码列表,每个元素包含地图密码及位置信息
data.passwords[].map_name string 地图名称
data.passwords[].password string 今日密码
data.passwords[].full_text string 完整文本,格式为
data.passwords[].location_info object 位置信息对象
data.passwords[].location_info.description string 密码房门具体位置描述
data.passwords[].location_info.images array 位置示意图的图片URL列表
data.source string 数据来源,例如
data.last_updated string 最后更新时间,格式YYYY-MM-DD HH:MM:SS
data.timestamp number 时间戳
metadata object 元数据对象
metadata.version string 版本号
metadata.author string 作者信息

响应码

状态码 说明
200 请求成功
203 秘钥错误或不存在
204 服务器错误
211 接口不存在
212 当前接口已下架
213 当前接口正处于审核期
214 API本地文件不存在,请联系管理员检查
215 管理员设置当前接口必须携带ckey请求!
216 付费接口请携带ckey请求!
217 ckey不存在!
218 当前ckey无权限调用此接口,请将此接口添加到ckey调用能力中后重试!
219 访问频率超过限制!请稍后重试!
220 本地API逻辑错误!请联系管理员检查!
221 状态码与管理员配置的状态码不一致,请联系管理员!
222 禁止访问!请联系管理员 (已被加入黑名单)
223 积分不足!请充值后重试
224 余额不足!请充值后重试
225 您已设置仅白名单ip访问!请将当前ip添加到白名单中

代码示例

curl
curl -X GET "https://api.71ywl.com/api/index.php?qy=sjzmm?type=json" \
  -H "Content-Type: application/none" \  -d '{}'
php
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.71ywl.com/api/index.php?qy=sjzmm?type=json");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Content-Type: application/none"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{}');
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
python
import requests

url = "https://api.71ywl.com/api/index.php?qy=sjzmm?type=json"
headers = {
  "Content-Type": "application/none"
}
data = """{}"""
response = requests.get(url, headers=headers, data=data)
print(response.text)
javascript
URL url = new URL("https://api.71ywl.com/api/index.php?qy=sjzmm?type=json");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setDoOutput(true);
conn.setRequestProperty("Content-Type", "application/none");
try (OutputStream os = conn.getOutputStream()) {
  byte[] input = "{}".getBytes("utf-8");
  os.write(input, 0, input.length);
}
BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
StringBuilder response = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
  response.append(line);
}
System.out.println(response.toString());