返回列表
API DOCUMENT
get/post

体脂率

根据体重、性别、腰围、身高计算体脂率

接口地址

请求参数

参数名 必填 类型 说明
weight number 体重(公斤)
gender string 性别(男/女)
waist number 腰围(厘米)
height number 身高(米,例如1米86应写作1.86)

返回参数

参数名 类型 说明
code 状态码
text 状态文本
msg 体脂率信息

返回示例

JSON
加载中...

接口调试

调用代码

PHP
<?php
$url = 'https://api.lolimi.cn/API/xxjc/api2.php';
$data = array (
  'weight' => 'value',
  'gender' => 'value',
  'waist' => 'value',
  'height' => 'value',
);

$query = http_build_query($data);
$res = file_get_contents($url.'?'.$query);
echo $res;
?>