芯化 MCP 开放平台

list_compound_details

列出化合物的结构化属性明细(ads_compound_detail)。可按 detail_type 筛选描述(desc)、物性(physical)、危险品(danger)、用途(purpose)、生产(production)等章节。需 mol_id 或 cas_no;需要全景概览时优先用 get_compound_profile。

英文描述

List structured property rows for a chemical from ads_compound_detail. Use when you need specific sections: descriptions (desc), physical properties (physical), hazards (danger), uses (purpose), production info (production). Requires mol_id or cas_no. Optional detail_type filter. Prefer get_compound_profile for a first overview.

文档更新:2026-06-23T10:00:00+08:00

请求参数

参数名参数说明数据类型样例数据
mol_id选填;至少 1 个字符string(选填,示例中省略)
cas_no选填;至少 1 个字符string(选填,示例中省略)
detail_type选填string(选填,示例中省略)
limit选填integer20
offset选填integer0

响应参数

参数名参数说明数据类型样例数据
data业务记录数组array[{"mol_id": "MOL2024010112345678", "detail_type": "physical", "detail_key": "沸点", "detail_value": "78.3°C"}]
data[].mol_id化合物 IDstringMOL2024010112345678
data[].detail_type明细类型stringphysical
data[].detail_key属性键string沸点
data[].detail_value属性值string78.3°C
meta.total命中总数integer100
meta.limit本页 limitinteger20
meta.offset本页 offsetinteger0
meta.has_more是否还有下一页booleantrue

响应状态说明

状态说明
success调用成功,返回业务数据
failed参数错误、后端业务错误或系统异常
deniedAPI Key 无效、无权限、RBAC/菜单拒绝等

请求示例

{
  "limit": 20,
  "offset": 0
}

响应示例

{
  "data": [
    {
      "mol_id": "MOL2024010112345678",
      "detail_type": "physical",
      "detail_key": "沸点",
      "detail_value": "78.3°C"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}