Start Me
Pasta
累计调用:77
指纹查运势
GET32种不同排列组合,O代表斗,X代表簸箕,指纹为圆圈就是o,其他为x,左右手都可以,从左到右
接口地址:
https://api.qster.top/API/v1/zwys
接口示例:
https://api.qster.top/API/v1/zwys/?qskey=0&input=oooox
请求参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
input | string | 是 | 指纹 o表示指纹为圈,x表示不为圈 |
qskey | string | 是 | |
免费密钥: qstertop | 建议注册账号获取密钥 延迟5秒 | 该密钥会限速影响体验 | 当前速率:150次/300秒 可联系管理员过白账号 |
响应参数
参数 | 说明 |
---|---|
messages | 返回结果 |
code | 200正常400失败 查看更多 |
代码示例
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.qster.top/API/v1/zwys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => [
"input" => "指纹 o表示指纹为圈,x表示不为圈",
"qskey" => "0",
],
CURLOPT_HTTPHEADER => [
"User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0",
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
?>
import requests
url = "https://api.qster.top/API/v1/zwys";
params = {
"input" : "指纹 o表示指纹为圈,x表示不为圈",
"qskey" => "0"
}
response = requests.get(url, params=params)
print(response.text)
function fetchData(url, params) {
const queryString = Object.keys(params)
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(params[key])}`)
.join('&');
const fullUrl = `${url}?${queryString}`;
fetch(fullUrl)
.then(response => response.text())
.then(data => {
const resultElement = document.createElement('pre');
resultElement.textContent = data;
document.body.appendChild(resultElement);
})
.catch(error => console.error('Error fetching data:', error));
}
// 示例用法
const url = "https://api.qster.top/API/v1/zwys";
const params = {
"input" : "指纹 o表示指纹为圈,x表示不为圈",
"qskey" => "0"
};
fetchData(url, params);
在线调试
小小赞助支持
