> For the complete documentation index, see [llms.txt](https://doc.duaer.com/zh/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.duaer.com/zh/getting-started/indications.md).

# 在 Duaer 里检索适应症

在 Duaer 里用 Duaer Data 按分子检索 ChEMBL 药物适应症。一次成功查询 1 额度。本页含完整英文调用技能。
## 能拿到什么

Duaer 数据市场里的「适应症」返回 ChEMBL 药物适应症（EFO/MeSH、最高阶段）。一次成功查询 1 额度。

从节点创建器的 [Duaer 数据分类](/zh/getting-started/duaer-data.md) 选「适应症」，或打开 [数据市场](/zh/getting-started/data-market.md) 复制技能。化合物见 [化合物和药物](/zh/getting-started/compounds.md)；生物活性见 [生物活性](/zh/getting-started/activities.md)。

## 在画布里检索

1. 打开节点创建器，点「Duaer 数据」，再选「适应症」。
2. Molecule 必填（新节点默认 aspirin）。可填名称或 CHEMBL id。
3. Limit 默认 10，最大 20；结果优先较高 max phase。点执行此步骤。

成功扣 1 额度。正式运行的交付进 [数据池](/zh/getting-started/data-pool.md)。

## 用 API 调用

- GET https://api.duaer.com/v1/data/indications?...
- Authorization: Bearer <Duaer key>
- 必须提供 molecule。

密钥见 [Duaer 公开 API 的身份验证](/zh/api/authentication.md)。下方是与「复制技能」相同的英文技能。

## 调用技能（英文）

与数据市场「复制技能」一致。正文保持英文。

```
---
name: duaer-indications
description: >-
  Search ChEMBL drug indications through Duaer by molecule.
  One successful search uses 1 Duaer credit.
---

# Duaer indications

Search ChEMBL drug indications through Duaer with a Duaer key.

## Call

`GET https://api.duaer.com/v1/data/indications?molecule=aspirin&limit=10`

Header: `Authorization: Bearer <Duaer key>`

Use an account key or a model API key.

`molecule` is required.

- `molecule` — molecule name or ChEMBL id (`CHEMBL25`). Names resolve via ChEMBL search. Look up PubChem names with https://skills.duaer.com/compounds.md.
- `limit` — optional. From 1 to 20. Default 10. Results prefer higher max phase.

## Result

Each item has `source`, `title`, `url`, `summary`, `indicationId`, `moleculeChemblId`, `efoId`, `efoTerm`, `meshId`, `meshHeading`, and `maxPhase`.
Reuse `moleculeChemblId` / names when searching compounds or activities. Reuse `efoTerm` / `meshHeading` when searching diseases or trials.

## Credits

One successful search uses 1 credit.
An empty search, a failed search, a compound that matches nothing, or no remaining credits uses 0.
No remaining credits returns 402 and does not search.
A missing key returns 401.

```
## Questions

### 结果按什么排序？

按适应症最高研发阶段（max phase）从高到低。

## 相关

- [在 Duaer 里检索化合物和药物](https://doc.duaer.com/zh/getting-started/compounds.md)
- [在 Duaer 里检索生物活性](https://doc.duaer.com/zh/getting-started/activities.md)
- [在 Duaer 里检索疾病](https://doc.duaer.com/zh/getting-started/diseases.md)
- [在 Duaer 里使用数据市场](https://doc.duaer.com/zh/getting-started/data-market.md)

