症状查疾
最后更新于:2022-04-02 08:24:59
## 症状查疾(维护中)
>[danger]### 免费接口,每日100次免费调用,会员可不限次数调用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/af/7e/af7e24858150a35b2c15dc803b74c581_200x200.png)
> 查询某个症状可能的疾病信息
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/gstore/disease
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string|是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| symptom| string | 是 | 症状名称 |
### 返回`data`参数
参考返回示例
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->gstoreDisease()
->withSymptom('发烧')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
"普通感冒",
"晒伤"
]
}
~~~
';