> 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/assays.md).

# 在 Duaer 里检索实验测定

在 Duaer 里用 Duaer Data 检索 ChEMBL 实验测定。一次成功查询 1 额度。本页含完整英文调用技能。
## 能拿到什么

Duaer 数据市场里的「实验测定」返回 ChEMBL assay（类型、物种、靶点、置信度）。一次成功查询 1 额度。

从节点创建器的 [Duaer 数据分类](/zh/getting-started/duaer-data.md) 选「实验测定」，或打开 [数据市场](/zh/getting-started/data-market.md) 复制技能。活性数值见 [生物活性](/zh/getting-started/activities.md)。

## 在画布里检索

1. 打开节点创建器，点「Duaer 数据」，再选「实验测定」。
2. Words 必填（新节点默认 EGFR）。可填关键词或 assay CHEMBL id。
3. Organism、Assay type 可选。Limit 默认 10，最大 20；结果优先较高置信度。点执行此步骤。

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

## 用 API 调用

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

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

## 调用技能（英文）

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

```
---
name: duaer-assays
description: >-
  Search ChEMBL assays through Duaer by words or assay id.
  One successful search uses 1 Duaer credit.
---

# Duaer assays

Search ChEMBL assays through Duaer with a Duaer key.

## Call

`GET https://api.duaer.com/v1/data/assays?words=EGFR&organism=Homo%20sapiens&assayType=B&limit=10`

Header: `Authorization: Bearer <Duaer key>`

Use an account key or a model API key.

`words` is required.

- `words` — words in the assay description, or a ChEMBL assay id (`CHEMBL5344031`).
- `organism` — optional. Keep assays whose organism contains this text.
- `assayType` — optional. Letter code (`B`/`F`/`A`/…) or words from the type description.
- `limit` — optional. From 1 to 20. Default 10. Results prefer higher confidence.

## Result

Each item has `source`, `title`, `url`, `summary`, `assayChemblId`, `description`, `assayType`, `assayTypeDescription`, `organism`, `targetChemblId`, `confidenceScore`, `baoLabel`, and `documentChemblId`.
Reuse `assayChemblId` / `targetChemblId` when searching activities: https://skills.duaer.com/activities.md.

## 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

### Assay type 填什么？

可填字母代码（如 B）或类型描述中的词（如 Binding）。

## 相关

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

