小米运动刷步
小米运动刷步
小米运动(原zeep life)刷步
正常 公开 GET
请求信息
http://api.tinise.cn/api/zeep
总调用次数
2,763 次
添加时间
2025-10-30
请求参数
参数名类型必填说明
user string zeep账号,支持手机号和邮箱
pws string zeep密码
step string 需要刷的步数
返回示例
JSON
暂无返回示例
调用示例
PHP
<?php
$url = 'http://api.tinise.cn/api/zeep';
$params = [
    'user' => 'YOUR_VALUE',
    'pws' => 'YOUR_VALUE',
    'step' => 'YOUR_VALUE',
];
$url .= '?' . http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
Python
import requests

url = "http://api.tinise.cn/api/zeep"
params = {
    "user": "YOUR_VALUE",
    "pws": "YOUR_VALUE",
    "step": "YOUR_VALUE",
}
response = requests.get(url, params=params)
print(response.text)
JavaScript
const url = new URL('http://api.tinise.cn/api/zeep');
const params = {
    "user": "YOUR_VALUE",
    "pws": "YOUR_VALUE",
    "step": "YOUR_VALUE",
};
Object.keys(params).forEach(key => url.searchParams.append(key, params[key]));

fetch(url)
  .then(response => response.text())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));